diff options
Diffstat (limited to 'client/menu')
-rw-r--r-- | client/menu/overlay.gd | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/client/menu/overlay.gd b/client/menu/overlay.gd index e80a00f9..3a7bfd8b 100644 --- a/client/menu/overlay.gd +++ b/client/menu/overlay.gd @@ -45,8 +45,9 @@ func update(failed_: int, completed_: int, points_: int, time: float): points = points_ timer.stop() - timer.wait_time = time - timer.start() + if time > 0.: + timer.wait_time = time + timer.start() func set_ingame(_state: bool, lobby: bool): if lobby: |