mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-12 01:11:29 +00:00
13 lines
180 B
C++
Executable File
13 lines
180 B
C++
Executable File
#include "../client.h"
|
|
|
|
void command_nukebuffs(Client *c, const Seperator *sep)
|
|
{
|
|
if (c->GetTarget() == 0) {
|
|
c->BuffFadeAll();
|
|
}
|
|
else {
|
|
c->GetTarget()->BuffFadeAll();
|
|
}
|
|
}
|
|
|