projects
/
l2e.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2cbddc6
)
fixed type of monster number properties
author
Daniel Karbach
<daniel.karbach@localhorst.tv>
Tue, 11 Sep 2012 19:44:24 +0000
(21:44 +0200)
committer
Daniel Karbach
<daniel.karbach@localhorst.tv>
Tue, 11 Sep 2012 19:44:24 +0000
(21:44 +0200)
src/battle/Monster.h
patch
|
blob
|
history
diff --git
a/src/battle/Monster.h
b/src/battle/Monster.h
index db37dfebe0d0bb00873309387168f5b80a408399..e368dcc0e78a218b61dab47ccb2961b3146373b7 100644
(file)
--- 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;
};