if(strstrofs(msgin, "/me", 0) >= 0)
{
string newmsgin = "";
- string newnamestr = ((teamsay) ? strcat(colorstr, "(", colorprefix, namestr, colorstr, ")^7") : strcat(colorprefix, namestr));
- found_me = true;
+ string newnamestr = ((teamsay) ? strcat("^7", colorstr, "(", colorprefix, namestr, colorstr, ")^7") : strcat("^7", colorprefix, namestr));
FOREACH_WORD(msgin, true,
{
if(strdecolorize(it) == "/me")
+ {
+ found_me = true;
newmsgin = cons(newmsgin, newnamestr);
+ }
else
newmsgin = cons(newmsgin, it);
});