func_recharge: Only gives 30 armor points in multiplayer.

This commit is contained in:
Marco Cawthorne 2022-08-24 10:26:20 -07:00
parent 3ae65d41b7
commit 3c673dcf6d
Signed by: eukara
GPG key ID: CE2032F0A2882A22

View file

@ -151,7 +151,11 @@ func_recharge::ResetHealth(void)
}
SetFrame(0);
health = max_health = Skill_GetValue("suitcharger", 75);
if (g_grMode.IsMultiplayer() == true)
health = max_health = 30.0f;
else
health = max_health = Skill_GetValue("suitcharger", 75);
}
void