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