online multiplayer chess game (note server currently down)
Diffstat (limited to 'Utils.gd')
| -rw-r--r-- | Utils.gd | 5 |
1 files changed, 1 insertions, 4 deletions
@@ -157,10 +157,7 @@ func format_seconds(time: float, use_milliseconds: bool = false) -> String: func _notification(what: int) -> void: - if ( - what == MainLoop.NOTIFICATION_WM_QUIT_REQUEST - or what == MainLoop.NOTIFICATION_WM_GO_BACK_REQUEST - ): + if what == MainLoop.NOTIFICATION_WM_QUIT_REQUEST or what == MainLoop.NOTIFICATION_WM_GO_BACK_REQUEST: Log.debug("Bye!") |