mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-12 01:11:29 +00:00
11 lines
207 B
C++
Executable File
11 lines
207 B
C++
Executable File
#include "../client.h"
|
|
|
|
void command_undyeme(Client *c, const Seperator *sep)
|
|
{
|
|
if (c) {
|
|
c->Undye();
|
|
c->Message(Chat::Red, "Dye removed from all slots. Please zone for the process to complete.");
|
|
}
|
|
}
|
|
|