diff options
author | bd <bdunahu@operationnull.com> | 2025-05-28 21:44:38 -0400 |
---|---|---|
committer | bd <bdunahu@operationnull.com> | 2025-05-28 21:44:38 -0400 |
commit | 3affe4e168604dcaafd93e03a79b5cc6122d5bfc (patch) | |
tree | c1aa80967a3770a2846a979c6e1b46ac19a64e80 /scripts/warlock.gd | |
parent | ab9d1c167e1fa62d576b209edc20c0e87f4e977e (diff) |
Remove fire on enemy when enter tower vision, (fire rate consistent)
Diffstat (limited to 'scripts/warlock.gd')
-rw-r--r-- | scripts/warlock.gd | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts/warlock.gd b/scripts/warlock.gd index e19b394..c9241c6 100644 --- a/scripts/warlock.gd +++ b/scripts/warlock.gd @@ -6,6 +6,7 @@ func _ready(): set_tower_stats(game_stats_config.defenders_index.WARLOCK) reset_tower_range() reset_tower_sprite() + $FireTimer.wait_time = tower_data["fire_rate"] func _on_fire_timer_timeout(): select_target() |