diff --git a/config/queue.lua b/config/queue.lua index f590ba578..4acac435a 100644 --- a/config/queue.lua +++ b/config/queue.lua @@ -1,3 +1,5 @@ +local serverName = require 'config.shared'.serverName + return { ---Amount of seconds to wait before removing a player from the queue after disconnecting while waiting. timeoutSeconds = 30, @@ -54,10 +56,9 @@ return { local size = params.totalQueueSize local displayTime = params.displayTime - local serverName = GetConvar('sv_projectName', GetConvar('sv_hostname', 'Server')) local progressAmount = 7 -- amount of progress shown between the queue & server - local playerColumn = pos == 1 and progressAmount or (progressAmount - math.ceil(pos / (size / progressAmount)) + 1) + local progressTextReplacements = { [1] = { text = 'Queue',