diff options
author | erorcun <erorcunerorcun@hotmail.com.tr> | 2021-01-05 18:53:00 +0300 |
---|---|---|
committer | erorcun <erorcunerorcun@hotmail.com.tr> | 2021-01-05 18:53:00 +0300 |
commit | bafaa6acc65cd1e0b16e95d8f690b3ffc5cf6a8f (patch) | |
tree | 36a80dcbd20948d1240c5dfb55c4d316c0c4b98b | |
parent | f639aae2ae1bda9220dc1e3a238645230e076e05 (diff) |
sand fix
-rw-r--r-- | src/core/SurfaceTable.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/SurfaceTable.cpp b/src/core/SurfaceTable.cpp index 56cea203..8018076d 100644 --- a/src/core/SurfaceTable.cpp +++ b/src/core/SurfaceTable.cpp @@ -138,7 +138,7 @@ CSurfaceTable::GetWetMultiplier(uint8 surfaceType) case SURFACE_SAND: case SURFACE_SAND_BEACH: - return 1.0f - CWeather::WetRoads*0.5f; + return 1.0f + CWeather::WetRoads*0.5f; default: return 1.0f; |