From 6007edeb776ab00adc4c76dd88ef71877af141eb Mon Sep 17 00:00:00 2001 From: moisterrific <57187883+moisterrific@users.noreply.github.com> Date: Fri, 7 Feb 2020 16:14:27 -0500 Subject: [PATCH] Fix BoC false positive kick in NPCAddBuffTimeMax 360 ticks = 6 seconds, according to the wiki, the max possible duration is proportional to dmg taken, so 7.5 seconds would be the max duration (aka 450 ticks) --- TShockAPI/Bouncer.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TShockAPI/Bouncer.cs b/TShockAPI/Bouncer.cs index af432ac2..7b253ed4 100644 --- a/TShockAPI/Bouncer.cs +++ b/TShockAPI/Bouncer.cs @@ -1869,7 +1869,7 @@ namespace TShockAPI { BuffID.DryadsWardDebuff, 120 }, { BuffID.BetsysCurse, 600 }, { BuffID.Oiled, 540 }, - { BuffID.Confused, 360 }, // Brain of Confusion Internal Item ID: 3223 + { BuffID.Confused, 450 }, // Brain of Confusion Internal Item ID: 3223 { BuffID.Daybreak, 300 } // Solar Eruption Item ID: 3473, Daybreak Item ID: 3543 };