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