Merge pull request #752 from fryguy503/grammar-split

Fixed Game breaking grammar issue with /split
This commit is contained in:
Michael Cook (mackal) 2018-07-21 17:06:40 -04:00 committed by GitHub
commit ede21d9b10
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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;
}