2025-12-26 20:58:07 -08:00

12 lines
158 B
C++

#include "zone/client.h"
void ShowBuffs(Client *c, const Seperator *sep)
{
Mob* t = c;
if (c->GetTarget()) {
t = c->GetTarget();
}
t->ShowBuffs(c);
}