Skip to content

Commit

Permalink
fix(server/queue): fix edge case when awaiting player joining
Browse files Browse the repository at this point in the history
  • Loading branch information
D4isDAVID committed Jan 20, 2024
1 parent 87493f1 commit 9400085
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions server/queue.lua
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,7 @@ local function awaitPlayerJoinsOrDisconnects(license)
local joiningData
while true do
joiningData = joiningPlayers[license]
if not joiningData then return end

-- wait until the player finally joins or disconnects while installing server content
-- this may result in waiting ~2 additional minutes if the player disconnects as FXServer will think that the player exists
Expand Down

0 comments on commit 9400085

Please sign in to comment.