From 71bde92949938e0e544dace8538a346d25a37d93 Mon Sep 17 00:00:00 2001 From: Marc Gilleron Date: Sat, 1 Aug 2020 22:24:11 +0100 Subject: [PATCH] Fix conflicting function name --- project/blocky_game/water.gd | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/project/blocky_game/water.gd b/project/blocky_game/water.gd index 509f242..c8e0e7a 100644 --- a/project/blocky_game/water.gd +++ b/project/blocky_game/water.gd @@ -46,10 +46,10 @@ func _process(delta: float): _time_before_next_process -= delta if _time_before_next_process <= 0.0: _time_before_next_process += INTERVAL_SECONDS - _process_queue() + _do_process_queue() -func _process_queue(): +func _do_process_queue(): # TODO Sometimes things don't update... of course var update_count = 0