mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-11 21:01:29 +00:00
- Fix #undye command as its method was not being used in command.cpp. - Cleanup messages and logic for both #undye and #undyeme.
8 lines
151 B
C++
Executable File
8 lines
151 B
C++
Executable File
#include "../client.h"
|
|
|
|
void command_undyeme(Client *c, const Seperator *sep)
|
|
{
|
|
c->Undye();
|
|
c->Message(Chat::White, "Undyed armor for yourself.");
|
|
}
|