From 5aee32e8546d509dcee42b113e683e8c69484734 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 20 Mar 2026 02:37:40 +0000 Subject: [PATCH] Fix CloneMob to copy base_race from in.base_race instead of in.race Co-authored-by: Valorith <76063792+Valorith@users.noreply.github.com> --- zone/mob.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zone/mob.h b/zone/mob.h index 4f5b27b73..c0970f25c 100644 --- a/zone/mob.h +++ b/zone/mob.h @@ -1968,7 +1968,7 @@ private: gender = in.gender; race = in.race; base_gender = in.base_gender; - base_race = in.race; + base_race = in.base_race; use_model = in.use_model; class_ = in.class_; bodytype = in.bodytype;