diff options
author | bd <bdunahu@operationnull.com> | 2025-05-24 22:05:00 -0400 |
---|---|---|
committer | bd <bdunahu@operationnull.com> | 2025-05-24 22:05:00 -0400 |
commit | d229286f70b619497bc946a36e5440df3d04f674 (patch) | |
tree | 21f41eca440ce960b81a322049929ee287173171 /scripts/player.gd | |
parent | eca6f608a81cc9aa7d2cd3824cbfebdbfe5f7096 (diff) |
Add a title screen and music
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 d9ee0bd..f399f02 100644 --- a/scripts/player.gd +++ b/scripts/player.gd @@ -15,10 +15,10 @@ var dirs = { } var tower_ids = { - "tower_action_one": 0, - "tower_action_two": 1, - "tower_action_three": 2, - "tower_action_four": 3, + "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, } signal curr_tile(tile_state) |