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
@ -44,4 +40,4 @@ jobs:
path: docs/.vitepress/dist path: docs/.vitepress/dist
- name: Deploy - name: Deploy
id: deployment id: deployment
uses: actions/deploy-pages@v2 uses: actions/deploy-pages@v2

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
@ -256,4 +257,4 @@ for _, player: Player in ipairs(Players:GetPlayers()) do
task.spawn(initializeEachPlayer, player) task.spawn(initializeEachPlayer, player)
end end
return ServerProcess return ServerProcess