diff options
author | tpart <tpart120@proton.me> | 2025-06-06 18:04:05 +0200 |
---|---|---|
committer | tpart <tpart120@proton.me> | 2025-06-06 18:04:11 +0200 |
commit | 22d5a487627bccd9f8f99895f04d9107107b7a6b (patch) | |
tree | d977dc64203a253f2c64541fde414c0c73ca73ea /client/menu | |
parent | fe11bc036ad342e178ba29e66e014baa1e60d380 (diff) | |
download | hurrycurry-22d5a487627bccd9f8f99895f04d9107107b7a6b.tar hurrycurry-22d5a487627bccd9f8f99895f04d9107107b7a6b.tar.bz2 hurrycurry-22d5a487627bccd9f8f99895f04d9107107b7a6b.tar.zst |
Correctly implement pausing (Fix #284)
Diffstat (limited to 'client/menu')
-rw-r--r-- | client/menu/communicate/item/item_message.gd | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/menu/communicate/item/item_message.gd b/client/menu/communicate/item/item_message.gd index dfbaf232..94fdf82d 100644 --- a/client/menu/communicate/item/item_message.gd +++ b/client/menu/communicate/item/item_message.gd @@ -63,7 +63,7 @@ func remove_item(): item_render.remove_item() func _process(delta): - if item_render.item != null: + if item_render.item != null and !Global.game_paused: timeout_remaining -= delta progress.value = timeout_remaining var x: float = timeout_remaining / timeout_initial |