Fixes #1252 and #1160, remove the optional parameter from TSPlayer.SendMessage()

This commit is contained in:
ProfessorXZ 2016-07-31 22:33:07 +02:00
parent 1aa430016a
commit 2f57336fe8
3 changed files with 45 additions and 8 deletions

View file

@ -50,7 +50,7 @@ namespace TShockAPI
SendMessage(msg, color.R, color.G, color.B);
}
public override void SendMessage(string msg, byte red, byte green, byte blue, int messageLength = -1)
public override void SendMessage(string msg, byte red, byte green, byte blue)
{
Console.WriteLine(msg);
}