]> git.localhorst.tv Git - l2e.git/commitdiff
fixed type of monster number properties
authorDaniel Karbach <daniel.karbach@localhorst.tv>
Tue, 11 Sep 2012 19:44:24 +0000 (21:44 +0200)
committerDaniel Karbach <daniel.karbach@localhorst.tv>
Tue, 11 Sep 2012 19:44:24 +0000 (21:44 +0200)
src/battle/Monster.h

index db37dfebe0d0bb00873309387168f5b80a408399..e368dcc0e78a218b61dab47ccb2961b3146373b7 100644 (file)
@@ -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;
 
 };