mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-12 17:51:28 +00:00
Fixed Game breaking grammar issue with /split
This commit is contained in:
parent
96d146f73c
commit
b5b266d265
@ -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;
|
||||
}
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user