mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-12 13:41:31 +00:00
13 lines
256 B
C++
Executable File
13 lines
256 B
C++
Executable File
#include "../client.h"
|
|
|
|
void command_unfreeze(Client *c, const Seperator *sep)
|
|
{
|
|
if (!c->GetTarget()) {
|
|
c->Message(Chat::White, "You must have a target to use this command.");
|
|
return;
|
|
}
|
|
|
|
c->GetTarget()->SendAppearancePacket(AT_Anim, ANIM_STAND);
|
|
}
|
|
|