From b400700d819c146b17b9add6179c905a129a6d70 Mon Sep 17 00:00:00 2001 From: Alex King <89047260+Kinglykrab@users.noreply.github.com> Date: Sat, 23 Mar 2024 19:49:15 -0400 Subject: [PATCH] [Hot Fix] Fix Group::AddToGroup (#4201) # Notes - We were not using `r` values at any point. --- zone/groups.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/zone/groups.cpp b/zone/groups.cpp index 4cb160698..f52291222 100644 --- a/zone/groups.cpp +++ b/zone/groups.cpp @@ -2537,9 +2537,9 @@ void Group::AddToGroup(Mob* m) void Group::AddToGroup(AddToGroupRequest r) { uint32 bot_id = 0; - uint32 character_id = 0; + uint32 character_id = r.character_id; uint32 merc_id = 0; - std::string name = ""; + std::string name = r.name; if (r.mob) { if (r.mob->IsBot()) {