eqemu-server/zone/gm_commands/unscribespells.cpp
2025-12-26 20:58:07 -08:00

14 lines
242 B
C++
Executable File

#include "zone/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();
}