diff options
Diffstat (limited to 'scripts/cursor.gd')
-rw-r--r-- | scripts/cursor.gd | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/cursor.gd b/scripts/cursor.gd index d12f9e0..22c1da1 100644 --- a/scripts/cursor.gd +++ b/scripts/cursor.gd @@ -15,11 +15,11 @@ var dirs = {"move_right": Vector2.RIGHT, var towers : Dictionary[String, Dictionary] = { "place_warlock": { "scene": preload("res://scenes/warlock.tscn"), - "cost": game_stats_config.warlock_defender_cost + "cost": game_stats_config.defenders["warlock"]["cost"] }, "place_wyvern": { "scene": preload("res://scenes/wyvern.tscn"), - "cost": game_stats_config.wyvern_defender_cost + "cost": game_stats_config.defenders["wyvern"]["cost"] } } |