mirror of
https://github.com/ErikasKontenis/SabrehavenServer.git
synced 2025-04-30 09:39:20 +02:00
7 lines
129 B
Lua
7 lines
129 B
Lua
function Vocation.getBase(self)
|
|
local base = self
|
|
while base:getDemotion() do
|
|
base = base:getDemotion()
|
|
end
|
|
return base
|
|
end |