summaryrefslogtreecommitdiff
path: root/src/map/mob.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/map/mob.c')
-rw-r--r--src/map/mob.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/map/mob.c b/src/map/mob.c
index 97564cfd1..4772d5b60 100644
--- a/src/map/mob.c
+++ b/src/map/mob.c
@@ -2315,6 +2315,9 @@ int mob_class_change (struct mob_data *md, int class_)
if (mob_is_clone(md->class_))
return 0; //Clones
+ if (md->class_ == class_)
+ return 0; //Nothing to change.
+
hp_rate = md->status.hp*100/md->status.max_hp;
md->class_ = class_;
md->db = mob_db(class_);