From 70bf515ae0f2d9031aa6ad56eb699a1697e10c3a Mon Sep 17 00:00:00 2001 From: Lucas Nicodemus Date: Sun, 27 May 2012 11:36:37 -0600 Subject: [PATCH] Actually use the aformentioned variable instead of ChatFormat --- TShockAPI/TShock.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TShockAPI/TShock.cs b/TShockAPI/TShock.cs index 8720dc57..e8e3961e 100644 --- a/TShockAPI/TShock.cs +++ b/TShockAPI/TShock.cs @@ -809,7 +809,7 @@ namespace TShockAPI e.Handled = true; } else if (!tsplr.mute && TShock.Config.EnableChatAboveHeads) { - Utils.Broadcast(ply, String.Format(Config.ChatFormat, tsplr.Group.Name, tsplr.Group.Prefix, tsplr.Name, tsplr.Group.Suffix, text), tsplr.Group.R, tsplr.Group.G, tsplr.Group.B); + Utils.Broadcast(ply, String.Format(Config.ChatAboveHeadsFormat, tsplr.Group.Name, tsplr.Group.Prefix, tsplr.Name, tsplr.Group.Suffix, text), tsplr.Group.R, tsplr.Group.G, tsplr.Group.B); e.Handled = true; } else if (tsplr.mute)