diff --git a/gamemodes/zombiesurvival/gamemode/cl_init.lua b/gamemodes/zombiesurvival/gamemode/cl_init.lua index cf234e3..8b6c9b3 100644 --- a/gamemodes/zombiesurvival/gamemode/cl_init.lua +++ b/gamemodes/zombiesurvival/gamemode/cl_init.lua @@ -1780,6 +1780,10 @@ function GM:PlayerBindPress(pl, bind, wasin) elseif P_Team(pl) == TEAM_HUMAN then self:ToggleOTSCamera() end + elseif bind == "impulse 100" then + if P_Team(pl) == TEAM_UNDEAD and pl:Alive() then + self:ToggleZombieVision() + end end end diff --git a/gamemodes/zombiesurvival/gamemode/cl_postprocess.lua b/gamemodes/zombiesurvival/gamemode/cl_postprocess.lua index e5efad4..4813893 100644 --- a/gamemodes/zombiesurvival/gamemode/cl_postprocess.lua +++ b/gamemodes/zombiesurvival/gamemode/cl_postprocess.lua @@ -260,10 +260,6 @@ function GM:ToggleZombieVision(onoff) end end -net.Receive("zs_togglezvision", function(length) - gamemode.Call("ToggleZombieVision") -end) - local CModWhiteOut = { ["$pp_colour_addr"] = 0, ["$pp_colour_addg"] = 0, diff --git a/gamemodes/zombiesurvival/gamemode/init.lua b/gamemodes/zombiesurvival/gamemode/init.lua index e034c7f..37ee6e0 100644 --- a/gamemodes/zombiesurvival/gamemode/init.lua +++ b/gamemodes/zombiesurvival/gamemode/init.lua @@ -474,7 +474,6 @@ function GM:AddNetworkStrings() util.AddNetworkString("zs_deployableout") util.AddNetworkString("zs_trinketconsumed") util.AddNetworkString("zs_nailremoved") - util.AddNetworkString("zs_togglezvision") util.AddNetworkString("zs_remantlercontent") util.AddNetworkString("zs_classunlockstate") util.AddNetworkString("zs_changeclass") @@ -2200,11 +2199,6 @@ function GM:PlayerInitialSpawnRound(pl) local uniqueid = pl:UniqueID() - if table.HasValue(self.FanList, uniqueid) then - pl.DamageVulnerability = (pl.DamageVulnerability or 1) + 10 - pl:PrintTranslatedMessage(HUD_PRINTTALK, "thanks_for_being_a_fan_of_zs") - end - if self.PreviouslyDied[uniqueid] or ZSBOT then -- They already died and reconnected. pl:ChangeTeam(TEAM_UNDEAD) @@ -4314,11 +4308,6 @@ end function GM:PlayerSwitchFlashlight(pl, newstate) if pl:Team() == TEAM_UNDEAD then - if newstate then - net.Start("zs_togglezvision") - net.Send(pl) - end - return false end diff --git a/gamemodes/zombiesurvival/gamemode/sh_globals.lua b/gamemodes/zombiesurvival/gamemode/sh_globals.lua index f75e4a1..114086c 100644 --- a/gamemodes/zombiesurvival/gamemode/sh_globals.lua +++ b/gamemodes/zombiesurvival/gamemode/sh_globals.lua @@ -327,14 +327,3 @@ GM.ValidBeaconMessages = { "message_beacon_24", "message_beacon_25" } - -GM.FanList = { - "1418945843", - "1595085577", - "3311458935", - "3023059541", - "2000875318", - "778584317", - "6086255", - "2867054481" -}