Skip to content

Commit

Permalink
fix #3 Reallocation of stamina and health on the stats array
Browse files Browse the repository at this point in the history
  • Loading branch information
pedrxd committed Jun 23, 2018
1 parent c445f52 commit 9fc394a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/server/sv_snapshot.c
Original file line number Diff line number Diff line change
Expand Up @@ -500,7 +500,7 @@ static void SV_BuildClientSnapshot( client_t *client ) {
//InfiniteStamina MinMod
if(sv_infiniteStamina->integer)
{
ps->stats[9] = ps->stats[0] * 300;
ps->stats[0] = ps->stats[6] * 300;
}
if(sv_infiniteWallJumps->integer)
{
Expand Down

0 comments on commit 9fc394a

Please sign in to comment.