Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/imezx/Warp
Browse files Browse the repository at this point in the history
  • Loading branch information
imezx committed Jan 30, 2024
2 parents b5b64c3 + 51eda39 commit 8ef267e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
6 changes: 1 addition & 5 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,6 @@ on:
branches:
- master

concurrency:
group: pages
cancel-in-progress: false

jobs:
deploy:
name: Build & Deploy
Expand Down Expand Up @@ -44,4 +40,4 @@ jobs:
path: docs/.vitepress/dist
- name: Deploy
id: deployment
uses: actions/deploy-pages@v2
uses: actions/deploy-pages@v2
3 changes: 2 additions & 1 deletion src/Index/Server/ServerProcess.luau
Original file line number Diff line number Diff line change
Expand Up @@ -155,6 +155,7 @@ function ServerProcess.start()
for Identifier: string, players in serverQueue do
for player: Player, data in players do
if #data > 0 then
if not queueOut[player] then continue end
queueOut[player][Identifier] = table.clone(data)
table.clear(data)
end
Expand Down Expand Up @@ -256,4 +257,4 @@ for _, player: Player in ipairs(Players:GetPlayers()) do
task.spawn(initializeEachPlayer, player)
end

return ServerProcess
return ServerProcess

0 comments on commit 8ef267e

Please sign in to comment.