SendMessage(string, color) should invoke SendMessage(string, byte, byte, byte), not SendInfoMessage(string, obj[]) resulting in a infinite loop. Fixes #873
This commit is contained in:
parent
f6be98bd63
commit
fd2a049ef3
1 changed files with 1 additions and 1 deletions
|
|
@ -924,7 +924,7 @@ namespace TShockAPI
|
||||||
|
|
||||||
public override void SendMessage(string msg, Color color)
|
public override void SendMessage(string msg, Color color)
|
||||||
{
|
{
|
||||||
SendInfoMessage(msg, color.R, color.G, color.B);
|
SendMessage(msg, color.R, color.G, color.B);
|
||||||
}
|
}
|
||||||
|
|
||||||
public override void SendMessage(string msg, byte red, byte green, byte blue)
|
public override void SendMessage(string msg, byte red, byte green, byte blue)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue