diff options
| author | metamuffin <metamuffin@disroot.org> | 2024-07-26 18:27:18 +0200 |
|---|---|---|
| committer | metamuffin <metamuffin@disroot.org> | 2024-07-26 18:27:22 +0200 |
| commit | 9c7673253f7dcc50d761345c3fdcd0d6d3654f3e (patch) | |
| tree | 4a2c8c036f16e97c22767303a20d5be34635ef70 /client/game.gd | |
| parent | eb6527dec240c94d8cd27573c96c83cea2618cb3 (diff) | |
| download | hurrycurry-9c7673253f7dcc50d761345c3fdcd0d6d3654f3e.tar hurrycurry-9c7673253f7dcc50d761345c3fdcd0d6d3654f3e.tar.bz2 hurrycurry-9c7673253f7dcc50d761345c3fdcd0d6d3654f3e.tar.zst | |
add draft weather/environment system
Diffstat (limited to 'client/game.gd')
| -rw-r--r-- | client/game.gd | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/client/game.gd b/client/game.gd index e0b06772..b1f209a1 100644 --- a/client/game.gd +++ b/client/game.gd @@ -257,6 +257,8 @@ func _ready(): if lobby_state and not join_sent: join() ) + + mp.update_environment.connect($Environment.update) func join(): join_sent = true |