Water spells don't consume runes
Posted: Wed Sep 24, 2025 3:26 pm
Noticed when casting water strike with a staff of air equipped that no runes were consumed.
It seems there's a missing space in the code in every water spell:
https://git.sr.ht/~stormy/rscsundae/tre ... ssiles.lua
It seems there's a missing space in the code in every water spell:
Code: Select all
function finalize_water_strike(player)
...
if nothas_water_staff(player) then
remove(player, "water-rune", 1)
end
...