From 0f2814434d571b99e2df020f5257650542028b54 Mon Sep 17 00:00:00 2001 From: Simone Romano <19979417+SunTrustDev@users.noreply.github.com> Date: Sun, 15 Mar 2026 17:17:49 +0100 Subject: [PATCH] Always send computed points --- src/game/char.cpp | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/game/char.cpp b/src/game/char.cpp index a1ce0af..82172a8 100644 --- a/src/game/char.cpp +++ b/src/game/char.cpp @@ -1616,10 +1616,7 @@ void CHARACTER::PointsPacket() pack.points[POINT_STAMINA] = GetStamina(); pack.points[POINT_MAX_STAMINA] = GetMaxStamina(); - for (int i = POINT_ST; i < POINT_IQ + 1; ++i) - pack.points[i] = GetRealPoint(i); - - for (int i = POINT_IQ + 1; i < POINT_MAX_NUM; ++i) + for (int i = POINT_ST; i < POINT_MAX_NUM; ++i) pack.points[i] = GetPoint(i); GetDesc()->Packet(&pack, sizeof(TPacketGCPoints));