online multiplayer chess game (note server currently down)
Diffstat (limited to 'Utils.gd')
-rw-r--r--Utils.gd2
1 files changed, 1 insertions, 1 deletions
diff --git a/Utils.gd b/Utils.gd
index 0660e67..114fc67 100644
--- a/Utils.gd
+++ b/Utils.gd
@@ -20,7 +20,7 @@ func add_move(move):
turn_moves.append(str(Globals.white_turns + 1) + ". " + move)
else:
turn_moves.append(move)
- emit_signal("newmove", turn_moves[-1])
+ emit_signal("newmove", move)
func calculate_algebraic_position(real_position):