mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-12 01:11:29 +00:00
13 lines
250 B
C++
Executable File
13 lines
250 B
C++
Executable File
#include "../client.h"
|
|
|
|
void command_makepet(Client *c, const Seperator *sep)
|
|
{
|
|
if (sep->arg[1][0] == '\0') {
|
|
c->Message(Chat::White, "Usage: #makepet pet_type_name (will not survive across zones)");
|
|
}
|
|
else {
|
|
c->MakePet(0, sep->arg[1]);
|
|
}
|
|
}
|
|
|