mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-26 19:21:28 +00:00
12 lines
159 B
C++
12 lines
159 B
C++
#include "../../client.h"
|
|
|
|
void ShowBuffs(Client *c, const Seperator *sep)
|
|
{
|
|
Mob* t = c;
|
|
if (c->GetTarget()) {
|
|
t = c->GetTarget();
|
|
}
|
|
|
|
t->ShowBuffs(c);
|
|
}
|