20 lines
262 B
Lua
20 lines
262 B
Lua
local BusinessLogic = {}
|
|
|
|
|
|
|
|
|
|
|
|
function BusinessLogic.GetVisibleAgeForPlayer(player)
|
|
local accountTypeText = "Account: <13"
|
|
if player and not player:GetUnder13() then
|
|
accountTypeText = "Account: 13+"
|
|
end
|
|
return accountTypeText
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
return BusinessLogic
|