PGRData/Resources/Scripts/XRedPoint/XRedPointConditions/XRedPointConditionSlotMachine.lua

11 lines
235 B
Lua
Raw Normal View History

2022-12-26 14:06:01 +05:30
local XRedPointConditionSlotMachine = {}
function XRedPointConditionSlotMachine.Check()
if XDataCenter.SlotMachineManager.CheckRedPoint() then
return true
end
return false
end
return XRedPointConditionSlotMachine