diff options
author | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-02-13 18:58:14 +0000 |
---|---|---|
committer | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-02-13 18:58:14 +0000 |
commit | 44ade8dfd6c775c9c2c0e47f049e2b99807ed3c1 (patch) | |
tree | 8e45d475ad540ecfa2fc4591213c477e9bacbf68 /src/map/map.h | |
parent | 7751fc21990d18f215dff82669a470b7c3660b11 (diff) | |
download | hercules-44ade8dfd6c775c9c2c0e47f049e2b99807ed3c1.tar.gz hercules-44ade8dfd6c775c9c2c0e47f049e2b99807ed3c1.tar.bz2 hercules-44ade8dfd6c775c9c2c0e47f049e2b99807ed3c1.tar.xz hercules-44ade8dfd6c775c9c2c0e47f049e2b99807ed3c1.zip |
- Made Land Protector Block Hammerfall.
- More signed/unsigned comparison fixes.
- Added dummy_item variable to itemdb. It will be used on all itemdb_searches that do not yield a valid item from the db.
- Added itemdb_load, which is the one used for item_db loading (if the item does not exists, it'll be created)
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@5270 54d463be-8e91-2dee-dedb-b68131a5f0ec
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 ea1f85bbd..da04f6d0b 100644 --- a/src/map/map.h +++ b/src/map/map.h @@ -853,8 +853,8 @@ struct mob_data { short speed;
short attacked_count;
short target_lv;
+ unsigned short level;
unsigned long tdmg; //Stores total damage given to the mob, for exp calculations. [Skotlex]
- unsigned int level;
int timer;
int hp, max_hp;
int target_id,attacked_id;
|