diff options
Diffstat (limited to 'src/map/map.h')
-rw-r--r-- | src/map/map.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/map/map.h b/src/map/map.h index 3a97991cb..ea1f85bbd 100644 --- a/src/map/map.h +++ b/src/map/map.h @@ -845,15 +845,16 @@ struct mob_data { int id;
int dmg;
} dmglog[DAMAGELOG_SIZE];
- unsigned long tdmg; //Stores total damage given to the mob, for exp calculations. [Skotlex]
short n;
- short base_class,class_,dir,mode,level;
+ short base_class,class_,dir,mode;
short m,x0,y0,xs,ys;
short to_x,to_y;
short target_dir;
short speed;
short attacked_count;
short target_lv;
+ 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;
|