mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-11 21:01:29 +00:00
14 lines
240 B
C++
Executable File
14 lines
240 B
C++
Executable File
#include "../client.h"
|
|
|
|
void command_unscribespells(Client *c, const Seperator *sep)
|
|
{
|
|
Client *t = c;
|
|
|
|
if (c->GetTarget() && c->GetTarget()->IsClient() && c->GetGM()) {
|
|
t = c->GetTarget()->CastToClient();
|
|
}
|
|
|
|
t->UnscribeSpellAll();
|
|
}
|
|
|