From 9fc394ae2ae2eae7d2329ad9daaef4a6bfe874e4 Mon Sep 17 00:00:00 2001 From: Pedro Ruiz Date: Sat, 23 Jun 2018 16:26:40 +0200 Subject: [PATCH] fix #3 Reallocation of stamina and health on the stats array --- code/server/sv_snapshot.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/server/sv_snapshot.c b/code/server/sv_snapshot.c index 94c7d820a..f597bd342 100644 --- a/code/server/sv_snapshot.c +++ b/code/server/sv_snapshot.c @@ -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) {