mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-12 13:41:31 +00:00
20 lines
246 B
C++
Executable File
20 lines
246 B
C++
Executable File
#include "../client.h"
|
|
#include "../groups.h"
|
|
|
|
void command_refreshgroup(Client *c, const Seperator *sep)
|
|
{
|
|
if (!c) {
|
|
return;
|
|
}
|
|
|
|
Group *g = c->GetGroup();
|
|
|
|
if (!g) {
|
|
return;
|
|
}
|
|
|
|
database.RefreshGroupFromDB(c);
|
|
//g->SendUpdate(7, c);
|
|
}
|
|
|