aboutsummaryrefslogtreecommitdiff
path: root/client/map/environment
diff options
context:
space:
mode:
authortpart <tpart120@proton.me>2024-08-19 15:20:17 +0200
committertpart <tpart120@proton.me>2024-08-19 15:20:17 +0200
commitad4813d269775a37f04a7fb28e68eb61076df624 (patch)
tree35404df970114b3c5c45eaca2532b5a19bde2ece /client/map/environment
parentd94b3975d63d5c4ced02ad99d643bbce429cd75c (diff)
downloadhurrycurry-ad4813d269775a37f04a7fb28e68eb61076df624.tar
hurrycurry-ad4813d269775a37f04a7fb28e68eb61076df624.tar.bz2
hurrycurry-ad4813d269775a37f04a7fb28e68eb61076df624.tar.zst
Fix error related to rain particle amount
Diffstat (limited to 'client/map/environment')
-rw-r--r--client/map/environment/environment.gd2
1 files changed, 1 insertions, 1 deletions
diff --git a/client/map/environment/environment.gd b/client/map/environment/environment.gd
index fd002406..35f69be6 100644
--- a/client/map/environment/environment.gd
+++ b/client/map/environment/environment.gd
@@ -20,7 +20,7 @@ func update(active: Array):
# TODO ramp
rain.emitting = active.has("rain")
- rain.amount = 500 if active.has("rain") else 0
+ # TODO: Allow server to specify rain.amount
func set_sky(sky_name: String):
world_environment.set_sky(sky_name)