From 08837726fc5dc4f7ab141544e2a1b79840d961c3 Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Thu, 23 May 2019 02:37:15 +0300 Subject: Fix some stats calculation issues by reverting basic stats type from uint32 to uint16 --- src/map/status.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/map/status.h b/src/map/status.h index 5f53b715a..853a7a1a6 100644 --- a/src/map/status.h +++ b/src/map/status.h @@ -2058,8 +2058,9 @@ typedef struct weapon_atk { struct status_data { uint32 hp, sp, // see status_cpy before adding members before hp and sp - max_hp, max_sp, - str, agi, vit, int_, dex, luk, + max_hp, max_sp; + uint16 str, agi, vit, int_, dex, luk; + uint32 batk, matk_min, matk_max, speed, -- cgit v1.2.3-60-g2f50