mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-11 16:51:29 +00:00
13 lines
249 B
C++
Executable File
13 lines
249 B
C++
Executable File
#include "../client.h"
|
|
|
|
void command_freeze(Client *c, const Seperator *sep)
|
|
{
|
|
if (c->GetTarget() != 0) {
|
|
c->GetTarget()->SendAppearancePacket(AT_Anim, ANIM_FREEZE);
|
|
}
|
|
else {
|
|
c->Message(Chat::White, "ERROR: Freeze requires a target.");
|
|
}
|
|
}
|
|
|