Kinglykrab d83ced6f76
[Commands] Cleanup #undye and #undyeme Commands. (#1966)
- Fix #undye command as its method was not being used in command.cpp.
- Cleanup messages and logic for both #undye and #undyeme.
2022-02-10 16:10:16 -05:00

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.");
}