
Could you fix to change rune color when sys_forbid_magic return "true", like set g_disable_runes to "true" for DSB0.60?
Moderator: Sophia
Code: Select all
function sys_forbid_magic(ppos, who)
local silenced = dsb_get_condition(who, C_SILENCE)
if (silenced) then
for i=1 ,#g_disabled_runes do
g_disabled_runes[i] = true
end
return true
end
for i=1 ,#g_disabled_runes do
g_disabled_runes[i] = false
end
return false
end