diff options
Diffstat (limited to 'scripts/player.gd')
-rw-r--r-- | scripts/player.gd | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/scripts/player.gd b/scripts/player.gd index b26beac..43ca213 100644 --- a/scripts/player.gd +++ b/scripts/player.gd @@ -15,10 +15,10 @@ var dirs = { } var tower_ids = { - "tower_action_one": game_stats_config.defenders_index.WARLOCK, - "tower_action_two": game_stats_config.defenders_index.WYVERN, - "tower_action_three": game_stats_config.defenders_index.WARLOCK, - "tower_action_four": game_stats_config.defenders_index.WARLOCK, + "tower_action_one": 0, + "tower_action_two": 1, + "tower_action_three": 2, + "tower_action_four": 3, } signal curr_tile(tile_state) |