diff --git a/gamemodes/zombiesurvival/gamemode/init.lua b/gamemodes/zombiesurvival/gamemode/init.lua index 3d8db46..21984a7 100644 --- a/gamemodes/zombiesurvival/gamemode/init.lua +++ b/gamemodes/zombiesurvival/gamemode/init.lua @@ -1451,6 +1451,10 @@ function GM:PlayerReadyRound(pl) local classid = pl:GetZombieClass() pl:SetZombieClass(classid, true, pl) + + if self.OverrideStartingWorth then + pl:SendLua("GAMEMODE.StartingWorth="..tostring(self.StartingWorth)) + end if pl:Team() == TEAM_UNDEAD then -- This is just so they get updated on what class they are and have their hulls set up right. @@ -1466,10 +1470,6 @@ function GM:PlayerReadyRound(pl) gamemode.Call("DoHonorableMentions", pl) end - if self.OverrideStartingWorth then - pl:SendLua("GAMEMODE.StartingWorth="..tostring(self.StartingWorth)) - end - if pl:GetInfo("zs_noredeem") == "1" then pl.NoRedeeming = true end