update holiday

This commit is contained in:
2026-01-01 05:21:25 +08:00
parent c5e9d073fa
commit 7423e29443
12 changed files with 273 additions and 37 deletions
+3 -3
View File
@@ -100,9 +100,9 @@ func use_special_effect():
# Start cooldown
special_cooldown_timer = SPECIAL_COOLDOWN
# Play special animation (backflip)
if player.has_method("play_special_animation"):
player.play_special_animation()
# Play special animation (backflip) - synced across network
if player.is_multiplayer_authority() and player.has_method("sync_special_animation"):
player.rpc("sync_special_animation")
# Trigger random special effect via SpecialTilesManager
var special_tiles_manager = player.get_node_or_null("SpecialTilesManager")