forked from Not/srb2k-leaderboard
v1.2.11
This commit is contained in:
parent
2e5c209a65
commit
017794c554
@ -121,6 +121,10 @@ end
|
|||||||
|
|
||||||
local function retry(player, ...)
|
local function retry(player, ...)
|
||||||
if doyoudare(player) then
|
if doyoudare(player) then
|
||||||
|
-- Prevents bind crash
|
||||||
|
if leveltime < 15 then
|
||||||
|
return
|
||||||
|
end
|
||||||
COM_BufInsertText(server, "map " + G_BuildMapName(gamemap))
|
COM_BufInsertText(server, "map " + G_BuildMapName(gamemap))
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
@ -143,6 +147,9 @@ local function changelevel(player, ...)
|
|||||||
if not doyoudare(player) then
|
if not doyoudare(player) then
|
||||||
return
|
return
|
||||||
end
|
end
|
||||||
|
if leveltime < 15 then
|
||||||
|
return
|
||||||
|
end
|
||||||
|
|
||||||
local map = ...
|
local map = ...
|
||||||
if map == nil then
|
if map == nil then
|
||||||
|
Loading…
Reference in New Issue
Block a user