From: Daniel Karbach Date: Tue, 11 Sep 2012 19:44:24 +0000 (+0200) Subject: fixed type of monster number properties X-Git-Url: http://git.localhorst.tv/?a=commitdiff_plain;h=21539c358e849b44106b4af3f5941b4131c0f2d1;p=l2e.git fixed type of monster number properties --- diff --git a/src/battle/Monster.h b/src/battle/Monster.h index db37dfe..e368dcc 100644 --- a/src/battle/Monster.h +++ b/src/battle/Monster.h @@ -104,15 +104,15 @@ private: AttackChoice attackChoice; - Uint16 maxHealth, health; - Uint16 maxMana, mana; + int maxHealth, health; + int maxMana, mana; Stats stats; - Uint16 expReward, goldReward; + int expReward, goldReward; - Uint8 level; - Uint8 dropChance; + int level; + int dropChance; };