diff options
| author | Anson Bridges <bridges.anson@gmail.com> | 2022-10-19 14:14:08 -0400 |
|---|---|---|
| committer | Anson Bridges <bridges.anson@gmail.com> | 2022-10-19 14:19:10 -0400 |
| commit | 6dd265a0aee5fa0ed21b3d272fa3bc07d5d483d9 (patch) | |
| tree | bcf11172270686825efaeb0c86703f72cd4dade3 /godot/scripts/vehicles | |
| parent | 5100ec45264ff36a2558757e76198b8b25866992 (diff) | |
modelling, server stability, screen shake
Diffstat (limited to 'godot/scripts/vehicles')
| -rw-r--r-- | godot/scripts/vehicles/Airplane.gd | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/godot/scripts/vehicles/Airplane.gd b/godot/scripts/vehicles/Airplane.gd index 705820d..2de4792 100644 --- a/godot/scripts/vehicles/Airplane.gd +++ b/godot/scripts/vehicles/Airplane.gd @@ -102,11 +102,10 @@ remotesync func trigger_boost(): remotesync func end_boost(): $"%RocketTrail".emitting = false - print("stopped boosting") boosting = false countdown = boost_length -func _process(delta): +func _process(_delta): if is_network_master(): if boosting and countdown <= 0: rpc("end_boost") |
