mirror of
https://github.com/EQEmu/Server.git
synced 2026-03-26 22:02:26 +00:00
[Commands] #guild create argument count bug fix. (#1920)
- Names with spaces were breaking command.
This commit is contained in:
parent
10083387b6
commit
ae8273e0b1
@ -64,7 +64,7 @@ void command_guild(Client *c, const Seperator *sep)
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (is_create) {
|
if (is_create) {
|
||||||
if (arguments != 3) {
|
if (arguments < 3) {
|
||||||
c->Message(Chat::White, "Usage: #guild create [Character ID|Character Name] [Guild Name]");
|
c->Message(Chat::White, "Usage: #guild create [Character ID|Character Name] [Guild Name]");
|
||||||
} else {
|
} else {
|
||||||
auto leader_id = (
|
auto leader_id = (
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user