From 9f157e14e9d9a7bd182f0957eae5db8d976a1a20 Mon Sep 17 00:00:00 2001 From: zaCade Date: Tue, 28 Aug 2018 13:25:24 +0200 Subject: [PATCH] General: Clean up some stupid stuff. --- src/zr/respawn.inc | 2 +- src/zr/zombiereloaded.inc | 2 +- src/zr/zspawn.inc | 1 - 3 files changed, 2 insertions(+), 3 deletions(-) diff --git a/src/zr/respawn.inc b/src/zr/respawn.inc index 856d845..cdee230 100644 --- a/src/zr/respawn.inc +++ b/src/zr/respawn.inc @@ -30,7 +30,7 @@ */ enum RespawnCondition { - Repsawn_Default = -1, /** Let ZR decide according to its settings. */ + Respawn_Default = -1, /** Let ZR decide according to its settings. */ Respawn_Human = 0, /** Respawn as a human. */ Respawn_Zombie, /** Respawn as a zombie. */ Respawn_ZombieIfSuicide /** Respawn as a zombie if killed by world damage. */ diff --git a/src/zr/zombiereloaded.inc b/src/zr/zombiereloaded.inc index 0a1f9b8..4d41094 100644 --- a/src/zr/zombiereloaded.inc +++ b/src/zr/zombiereloaded.inc @@ -175,7 +175,7 @@ stock bool:ZRIsTimerRunning(Handle:timer) } /** - * Wrapper functions for KilLTimer. + * Wrapper functions for KillTimer. * Ends a timer if running, and resets its timer handle variable. * * @param timer The timer handle. diff --git a/src/zr/zspawn.inc b/src/zr/zspawn.inc index c1acfbb..dc6658b 100644 --- a/src/zr/zspawn.inc +++ b/src/zr/zspawn.inc @@ -207,7 +207,6 @@ ZSpawnOnRoundEnd() */ bool:ZSpawnClient(client, bool:force = false, bool:zombie = false) { - // If zspawn is disabled, then stop. new bool:zspawn = GetConVarBool(g_hCvarsList[CVAR_ZSPAWN]); if (!force && !zspawn)