hide Fireball Spread once a cast archetype is chosen, it did nothing there

main
Artur David 2026-06-23 23:35:40 +02:00
parent d5aca6bdf4
commit 35772ba2a6
1 changed files with 2 additions and 0 deletions

View File

@ -148,6 +148,7 @@ func _ready() -> void:
fsp.stats = _stat("Targets", str(witch.fireball_max_targets), str(witch.fireball_max_targets + 3))
fsp.spell = SpellLibrary.FIREBALL
fsp.icon = _icon_fireball
fsp.requires_mode = "fireball.cast:base"
fsp.effect = fireball_spread
available_perks.append(fsp)
@ -243,6 +244,7 @@ func fireball_spread():
fsp.stats = _stat("Targets", str(witch.fireball_max_targets), str(witch.fireball_max_targets * 1.5))
fsp.spell = SpellLibrary.FIREBALL
fsp.icon = _icon_fireball
fsp.requires_mode = "fireball.cast:base"
fsp.effect = fireball_spread
available_perks.append(fsp)