diff options
author | Andrei Karas <akaras@inbox.ru> | 2019-02-05 07:18:05 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2019-02-11 03:22:45 +0300 |
commit | 3514f4405c2a822be2350fed27fe2d15cad7152c (patch) | |
tree | 03bea033e3579d5245e773b82e903c6345b1b4fa /src/map/mob.h | |
parent | 8c04536cf64dd3a7c233d9631eceb23f7207ad9c (diff) | |
download | hercules-3514f4405c2a822be2350fed27fe2d15cad7152c.tar.gz hercules-3514f4405c2a822be2350fed27fe2d15cad7152c.tar.bz2 hercules-3514f4405c2a822be2350fed27fe2d15cad7152c.tar.xz hercules-3514f4405c2a822be2350fed27fe2d15cad7152c.zip |
Change type for class variables from short to int
Diffstat (limited to 'src/map/mob.h')
-rw-r--r-- | src/map/mob.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/mob.h b/src/map/mob.h index 4cb3877ed..cdfc07c7d 100644 --- a/src/map/mob.h +++ b/src/map/mob.h @@ -208,7 +208,7 @@ struct mob_data { struct spawn_data *spawn; //Spawn data. int spawn_timer; //Required for Convex Mirror struct item *lootitem; - short class_; + int class_; unsigned int tdmg; //Stores total damage given to the mob, for exp calculations. [Skotlex] int level; int target_id,attacked_id; |