Shared function

resetHeatHaze

From Multi Theft Auto: Wiki
Jump to navigation Jump to search

This function restores the default heat haze.

Syntax

bool resetHeatHaze()

Returns

Returns true if the heat haze was reset correctly, false otherwise.

Example

This example resets the heat haze.

addCommandHandler("reset2000",
  function()
    resetHeatHaze()
  end
)

See Also