updated chatformat to include groupname

This commit is contained in:
darkunderdog 2011-12-22 20:44:49 -06:00
parent e0094ae642
commit 636ddb2aba
2 changed files with 3 additions and 3 deletions

View file

@ -560,7 +560,7 @@ namespace TShockAPI
}
else
{
TShock.Utils.Broadcast(String.Format(TShock.Config.ChatFormat, tsplr.Group.Prefix, tsplr.Name, tsplr.Group.Suffix, text), tsplr.Group.R, tsplr.Group.G, tsplr.Group.B);
TShock.Utils.Broadcast(String.Format(TShock.Config.ChatFormat, tsplr.Group.Name, tsplr.Group.Prefix, tsplr.Name, tsplr.Group.Suffix, text), tsplr.Group.R, tsplr.Group.G, tsplr.Group.B);
e.Handled = true;
}
}