mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-12 01:11:29 +00:00
* [Commands] Cleanup #showbuffs Command # Notes - Cleaned up messages and logic. - Removed unnecessary itembonuses/spellbonuses stuff. - Removed `Mob::ShowBuffList` as it's just a copy of this method. * Update mob.cpp * Further cleanup. * Update mob.cpp * Update mob.cpp
13 lines
165 B
C++
Executable File
13 lines
165 B
C++
Executable File
#include "../client.h"
|
|
|
|
void command_showbuffs(Client *c, const Seperator *sep)
|
|
{
|
|
Mob* t = c;
|
|
if (c->GetTarget()) {
|
|
t = c->GetTarget();
|
|
}
|
|
|
|
t->ShowBuffs(c);
|
|
}
|
|
|