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