Code: Select all
class =
{
__ALL__ = "disallow",
Mage = "allow",
Divine = function() return profile.mod.allow_build.divine and "allow" or "disallow" end,
Wilder = function() return (
profile.mod.allow_build.wilder_summoner or
profile.mod.allow_build.wilder_wyrmic
) and "allow" or "disallow"
end,
Corrupter = function() return profile.mod.allow_build.corrupter and "allow" or "disallow" end,
Afflicted = function() return profile.mod.allow_build.afflicted and "allow" or "disallow" end,
Chronomancer = function() return profile.mod.allow_build.chronomancer and "allow" or "disallow" end,
},