Files
SabrehavenServer-1mindeploy/app/SabrehavenServer/data/lib/core/vocation.lua
2025-02-26 13:42:34 +01:00

7 lines
129 B
Lua

function Vocation.getBase(self)
local base = self
while base:getDemotion() do
base = base:getDemotion()
end
return base
end