From b5b266d265b469229e18ab1b3b131d1a984340c8 Mon Sep 17 00:00:00 2001 From: Trust Date: Sat, 21 Jul 2018 16:24:14 -0400 Subject: [PATCH] Fixed Game breaking grammar issue with /split --- zone/client_packet.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/zone/client_packet.cpp b/zone/client_packet.cpp index 43e10b424..d5d266588 100644 --- a/zone/client_packet.cpp +++ b/zone/client_packet.cpp @@ -13311,13 +13311,13 @@ void Client::Handle_OP_Split(const EQApplicationPacket *app) //Per the note above, Im not exactly sure what to do on error //to notify the client of the error... if (!isgrouped) { - Message(13, "You can not split money if your not in a group."); + Message(13, "You can not split money if you're not in a group."); return; } Group *cgroup = GetGroup(); if (cgroup == nullptr) { //invalid group, not sure if we should say more... - Message(13, "You can not split money if your not in a group."); + Message(13, "You can not split money if you're not in a group."); return; }