diff options
author | bd <bdunahu@operationnull.com> | 2025-05-25 15:17:58 -0400 |
---|---|---|
committer | bd <bdunahu@operationnull.com> | 2025-05-25 15:17:58 -0400 |
commit | 39794265b361c2f259a58d677f9e2e10b64d00af (patch) | |
tree | 5fb9b7f027c9f721964c4ea494ddb184e11da043 /scripts/player.gd | |
parent | 2e0c1c719db8bd6949a98678d0848c314bdaa0d7 (diff) |
Add more chaos to warlock bolts, fix crash with oob upgrades
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) |