PGRData/Resources/Scripts/XRedPoint/XRedPointConditions/XRedPointConditionSlotMachine.lua
2022-12-26 14:06:01 +05:30

11 lines
No EOL
235 B
Lua

local XRedPointConditionSlotMachine = {}
function XRedPointConditionSlotMachine.Check()
if XDataCenter.SlotMachineManager.CheckRedPoint() then
return true
end
return false
end
return XRedPointConditionSlotMachine