This commit is contained in:
EternityDev 2024-01-30 20:12:51 +07:00
commit 8ef267ed55
2 changed files with 3 additions and 6 deletions

View file

@ -5,10 +5,6 @@ on:
branches: branches:
- master - master
concurrency:
group: pages
cancel-in-progress: false
jobs: jobs:
deploy: deploy:
name: Build & Deploy name: Build & Deploy

View file

@ -155,6 +155,7 @@ function ServerProcess.start()
for Identifier: string, players in serverQueue do for Identifier: string, players in serverQueue do
for player: Player, data in players do for player: Player, data in players do
if #data > 0 then if #data > 0 then
if not queueOut[player] then continue end
queueOut[player][Identifier] = table.clone(data) queueOut[player][Identifier] = table.clone(data)
table.clear(data) table.clear(data)
end end