summaryrefslogtreecommitdiff
path: root/client/multiplayer.gd
diff options
context:
space:
mode:
authortpart <tpart120@proton.me>2024-08-19 15:46:03 +0200
committertpart <tpart120@proton.me>2024-08-19 15:46:03 +0200
commit6f1a8bc4a5dae11b54e87ff79abe66deb6d5fa9b (patch)
tree1d700fde59f9b6d9caa454b76f2737435561f213 /client/multiplayer.gd
parent70601b430804593826862fbc1aba0f14362ce3c1 (diff)
downloadhurrycurry-6f1a8bc4a5dae11b54e87ff79abe66deb6d5fa9b.tar
hurrycurry-6f1a8bc4a5dae11b54e87ff79abe66deb6d5fa9b.tar.bz2
hurrycurry-6f1a8bc4a5dae11b54e87ff79abe66deb6d5fa9b.tar.zst
Fix several warnings
Diffstat (limited to 'client/multiplayer.gd')
-rw-r--r--client/multiplayer.gd1
1 files changed, 1 insertions, 0 deletions
diff --git a/client/multiplayer.gd b/client/multiplayer.gd
index efcf6275..b3ce6217 100644
--- a/client/multiplayer.gd
+++ b/client/multiplayer.gd
@@ -293,6 +293,7 @@ func send_movement(player: int, pos: Vector2, direction: Vector2, boost: bool):
})
func send_tile_interact(player: int, pos: Vector2i, edge: bool):
+ @warning_ignore("incompatible_ternary")
send_packet({
"type": "interact",
"player": player,