mirror of
https://github.com/UltimateMenu/UltimateMenu.git
synced 2025-01-10 11:09:47 +08:00
Fix infinite loop in Nightclub Money Loop
This commit is contained in:
parent
692b57b3ff
commit
981e913045
@ -10071,8 +10071,8 @@ L7NEGML = L7NEG7:add_submenu("Nighclub Money Loop 250k/10s")
|
||||
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
||||
|
||||
local isRunning = false
|
||||
local function safeLoop(state)
|
||||
while state do
|
||||
local function safeLoop()
|
||||
while isRunning do
|
||||
stats.set_int(MPX .. "CLUB_POPULARITY", 1000)
|
||||
stats.set_int(MPX .. "CLUB_PAY_TIME_LEFT", -1)
|
||||
sleep(1.5)
|
||||
@ -10098,7 +10098,7 @@ L7NEGML:add_toggle(
|
||||
end,
|
||||
function()
|
||||
isRunning = not isRunning
|
||||
safeLoop(isRunning)
|
||||
safeLoop()
|
||||
end
|
||||
)
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user