online multiplayer chess game (note server currently down)
Diffstat (limited to 'Globals.gd')
-rw-r--r--Globals.gd2
1 files changed, 2 insertions, 0 deletions
diff --git a/Globals.gd b/Globals.gd
index 51e0512..232a243 100644
--- a/Globals.gd
+++ b/Globals.gd
@@ -5,6 +5,7 @@ var piece_set := "california"
var board_color1: Color = Color(0.870588, 0.890196, 0.901961)
var board_color2: Color = Color(0.54902, 0.635294, 0.678431)
var spectating := false
+var local := false
var playing := false setget , get_playing
var chat: Chat = null
var grid: Grid = null
@@ -14,6 +15,7 @@ func reset_vars() -> void:
team = "w"
grid = null
chat = null
+ local = false
spectating = false