From 00161088e790c0f5f3c110b1b62e823bed815674 Mon Sep 17 00:00:00 2001 From: Patrikkk Date: Thu, 4 Jun 2020 12:25:55 +0200 Subject: [PATCH] OnFishoutNPC - Use ConsoleDebug for message. --- TShockAPI/Bouncer.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TShockAPI/Bouncer.cs b/TShockAPI/Bouncer.cs index 69be781f..f21b60eb 100644 --- a/TShockAPI/Bouncer.cs +++ b/TShockAPI/Bouncer.cs @@ -1935,7 +1935,7 @@ namespace TShockAPI } if (!args.Player.IsInRange(args.TileX, args.TileY, 55)) { - TShock.Log.ConsoleError("Bouncer / OnFishOutNPC rejected range checks from {0}", args.Player.Name); + TShock.Log.ConsoleDebug("Bouncer / OnFishOutNPC rejected range checks from {0}", args.Player.Name); args.Handled = true; } }