diff options
| author | tpart <tpart120@proton.me> | 2025-10-16 21:02:44 +0200 |
|---|---|---|
| committer | tpart <tpart120@proton.me> | 2025-10-16 21:02:50 +0200 |
| commit | 1532e80cf37c9ee77cd921a158499188a1e172b2 (patch) | |
| tree | d5ea0f47d4b5a0fed9b764d6a31f628bfe606c1d /client/multiplayer.gd | |
| parent | 8fa812c2f55be090c950cff19b17e83ff5518879 (diff) | |
| download | hurrycurry-1532e80cf37c9ee77cd921a158499188a1e172b2.tar hurrycurry-1532e80cf37c9ee77cd921a158499188a1e172b2.tar.bz2 hurrycurry-1532e80cf37c9ee77cd921a158499188a1e172b2.tar.zst | |
Fix cutting animation not stopping when multiple people cut at once (Closes #472)
Diffstat (limited to 'client/multiplayer.gd')
| -rw-r--r-- | client/multiplayer.gd | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/multiplayer.gd b/client/multiplayer.gd index e8747995..d635db41 100644 --- a/client/multiplayer.gd +++ b/client/multiplayer.gd @@ -19,7 +19,7 @@ extends Node signal packet(packet: Dictionary) signal connection_closed() -static var VERSION_MAJOR: int = 11 +static var VERSION_MAJOR: int = 12 static var VERSION_MINOR: int = 0 var connected := false |