online multiplayer chess game (note server currently down)
Diffstat (limited to 'ui/board/Board.gd')
| -rw-r--r-- | ui/board/Board.gd | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/board/Board.gd b/ui/board/Board.gd index 70c21de..2a9b259 100644 --- a/ui/board/Board.gd +++ b/ui/board/Board.gd @@ -78,7 +78,7 @@ func init_board() -> void: # create the board background.add_child(square) # add the square to the background square.connect("clicked", self, "square_clicked", [alg]) # connect the clicked event background_array[i] = square # add the square to the background array - $Arrows._setup(self) # initialize the arrows + find_node("Arrows")._setup(self) # initialize the arrows func init_labels() -> void: |