diff --git a/TShockAPI/Bouncer.cs b/TShockAPI/Bouncer.cs index 484cc524..affa1609 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 }; @@ -428,6 +428,12 @@ namespace TShockAPI CanBeAddedWithoutHostile = true, CanOnlyBeAppliedToSender = true }; + PlayerAddBuffWhitelist[BuffID.WindPushed] = new BuffLimit + { + MaxTicks = 2, + CanBeAddedWithoutHostile = true, + CanOnlyBeAppliedToSender = true + }; #endregion Whitelist } diff --git a/docs/changelog.md b/docs/changelog.md index 7e5fb590..acb9ff20 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -86,6 +86,8 @@ Use past tense when adding new entries; sign your name off when you add or chang * Allowed Digging Molecart and bomb fish to break tiles and place tracks (@sgkoishi) * Add built-in package management capabilities for plugins * Fixed Super Sponge unable to absorb shimmer. (@sgkoishi, #2833) +* Increased whitelisted duration of the Mighty Wind (`WindPushed`) buff (from sandstorms). (@drunderscore) +* Whitelisted the Hellfire (`OnFire3`) buff. (@drunderscore) ## TShock 5.1.3 * Added support for Terraria 1.4.4.9 via OTAPI 3.1.20. (@SignatureBeef)