From 695ca52a9a6fd0eb6037525b6f0b87b2b1e49ba5 Mon Sep 17 00:00:00 2001 From: Patrikkk Date: Fri, 29 May 2020 03:27:19 +0200 Subject: [PATCH] Fix FishOutNPC bouncer debug message. --- TShockAPI/Bouncer.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/TShockAPI/Bouncer.cs b/TShockAPI/Bouncer.cs index b0bc2e9b..74858b2f 100644 --- a/TShockAPI/Bouncer.cs +++ b/TShockAPI/Bouncer.cs @@ -2082,13 +2082,13 @@ namespace TShockAPI } if (!FishingRodItemIDs.Contains(args.Player.SelectedItem.type) || projectile == null || !FishableNpcIDs.Contains(args.NpcID)) { - TShock.Log.ConsoleDebug("Bouncer / OnFoodPlatterTryPlacing rejected invalid NPC spawning from {0}", args.Player.Name); + TShock.Log.ConsoleDebug("Bouncer / OnFishOutNPC rejected invalid NPC spawning from {0}", args.Player.Name); args.Handled = true; return; } if (args.NpcID == NPCID.DukeFishron && !args.Player.HasPermission(Permissions.summonboss)) { - TShock.Log.ConsoleDebug("Bouncer / OnFoodPlatterTryPlacing rejected summon boss permissions from {0}", args.Player.Name); + TShock.Log.ConsoleDebug("Bouncer / OnFishOutNPC rejected summon boss permissions from {0}", args.Player.Name); args.Handled = true; return; }