func_recharge: Only gives 30 armor points in multiplayer.
This commit is contained in:
parent
3ae65d41b7
commit
3c673dcf6d
1 changed files with 5 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue