online multiplayer chess game (note server currently down)
Diffstat (limited to 'Globals.gd')
-rw-r--r--Globals.gd4
1 files changed, 2 insertions, 2 deletions
diff --git a/Globals.gd b/Globals.gd
index ad7b564..d6433d0 100644
--- a/Globals.gd
+++ b/Globals.gd
@@ -1,10 +1,10 @@
extends Node
var grid: Grid = null
-var piece_set = "california"
+var piece_set := "california"
var white_turns := 0
var black_turns := 0
-var in_check = false
+var in_check := false
var checking_piece: Piece = null
var white_king: King
var black_king: King