From 5013459824823b76c57949d41dbe3966ddca62d2 Mon Sep 17 00:00:00 2001 From: Alex King <89047260+Kinglykrab@users.noreply.github.com> Date: Sat, 9 Mar 2024 10:07:13 -0500 Subject: [PATCH] [Hot Fix] Add bool return to fix Client::RemoveAAPoints (#4176) # Notes - Was missing the `return true;` at the bottom. --- zone/client.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/zone/client.cpp b/zone/client.cpp index f79e9ecdf..28643efa8 100644 --- a/zone/client.cpp +++ b/zone/client.cpp @@ -11502,6 +11502,8 @@ bool Client::RemoveAAPoints(uint32 points) } SendAlternateAdvancementStats(); + + return true; } void Client::AddAAPoints(uint32 points)