SabrehavenServer/data/lib/core/vocation.lua
2019-09-16 20:38:16 +03:00

7 lines
129 B
Lua

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