From 6163ce6b73eb5fb86a6364d76e8b257659e9c18c Mon Sep 17 00:00:00 2001 From: Mario Date: Sun, 27 Aug 2017 22:46:31 +1000 Subject: [PATCH] Fix a typo --- qcsrc/server/client.qc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qcsrc/server/client.qc b/qcsrc/server/client.qc index 4417515cf..157a35379 100644 --- a/qcsrc/server/client.qc +++ b/qcsrc/server/client.qc @@ -1658,7 +1658,7 @@ void player_regen(entity this) this.ammo_fuel = CalcRotRegen(this.ammo_fuel, minf, autocvar_g_balance_fuel_regen, autocvar_g_balance_fuel_regenlinear, frametime * (time > this.pauseregen_finished) * ((this.items & ITEM_JetpackRegen.m_itemid) != 0), maxf, autocvar_g_balance_fuel_rot, autocvar_g_balance_fuel_rotlinear, frametime * (time > this.pauserotfuel_finished), limitf); } - // Ugly hack to make sure the haelth and armor don't go beyond hard limit. + // Ugly hack to make sure the health and armor don't go beyond hard limit. // TODO: Remove this hack when all code uses GivePlayerHealth and // GivePlayerArmor. if (this.health > RESOURCE_AMOUNT_HARD_LIMIT) -- 2.39.2