diff options
Diffstat (limited to 'src/map/status.c')
-rw-r--r-- | src/map/status.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/map/status.c b/src/map/status.c index 3199e05f2..7b30ee37a 100644 --- a/src/map/status.c +++ b/src/map/status.c @@ -1351,7 +1351,6 @@ void status_calc_misc(struct block_list *bl, struct status_data *status, int lev //Skotlex: Calculates the initial status for the given mob //first will only be false when the mob leveled up or got a GuardUp level. -//first&2: Class-change invoked. int status_calc_mob(struct mob_data* md, int first) { struct status_data *status; @@ -1360,10 +1359,7 @@ int status_calc_mob(struct mob_data* md, int first) if(first) { //Set basic level on respawn. - if (md->spawn && !(first&2)) - md->level = md->spawn->level; - else - md->level = md->db->lv; // [Valaris] + md->level = md->db->lv; } //Check if we need custom base-status |