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/map.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/map.h')
-rw-r--r-- | src/map/map.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/map.h b/src/map/map.h index d31ff4839..d96733f90 100644 --- a/src/map/map.h +++ b/src/map/map.h @@ -518,7 +518,7 @@ struct block_list { // Mob List Held in memory for Dynamic Mobs [Wizputer] // Expanded to specify all mob-related spawn data by [Skotlex] struct spawn_data { - short class_; ///< Class, used because a mob can change it's class + int class_; ///< Class, used because a mob can change it's class unsigned short m, x, y; ///< Spawn information (map, point, spawn-area around point) signed short xs, ys; unsigned short num; ///< Number of mobs using this structure |