mirror of
https://github.com/EQEmu/Server.git
synced 2026-05-17 03:08:26 +00:00
0550fcfd3f
* Split GM commands into their own files * Code cleanup
9 lines
124 B
C++
Executable File
9 lines
124 B
C++
Executable File
#include "../client.h"
|
|
|
|
void command_hp(Client *c, const Seperator *sep)
|
|
{
|
|
c->SendHPUpdate();
|
|
c->CheckManaEndUpdate();
|
|
}
|
|
|