From c5ab13fd1743d2c8c474cae6405f374253a307e9 Mon Sep 17 00:00:00 2001 From: unfa Date: Sat, 11 Sep 2021 15:32:31 +0200 Subject: [PATCH] Replaced is null with == null --- Game/Assets/UI/GUI.gd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Game/Assets/UI/GUI.gd b/Game/Assets/UI/GUI.gd index 12f0721..93ec0c2 100644 --- a/Game/Assets/UI/GUI.gd +++ b/Game/Assets/UI/GUI.gd @@ -28,7 +28,7 @@ func load_settings(): settings = file.get_var() file.close() - if settings is null: + if settings == null: settings = {} func apply_settings():