From ae3c9654adbc10c4273611e51c9bad9dd9fefef5 Mon Sep 17 00:00:00 2001 From: James Puleo Date: Fri, 2 Dec 2022 13:17:03 -0500 Subject: [PATCH] Increase whitelisted duration of the Hellfire (`OnFire3`) buff From 5 seconds to 6 seconds, as the Brand of the Inferno will apply this buff for a maximum of 6 seconds. --- TShockAPI/Bouncer.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TShockAPI/Bouncer.cs b/TShockAPI/Bouncer.cs index a9b99377..0367268e 100644 --- a/TShockAPI/Bouncer.cs +++ b/TShockAPI/Bouncer.cs @@ -400,7 +400,7 @@ namespace TShockAPI }; PlayerAddBuffWhitelist[BuffID.OnFire3] = new BuffLimit { - MaxTicks = 60 * 5, + MaxTicks = 60 * 6, CanBeAddedWithoutHostile = false, CanOnlyBeAppliedToSender = false };