From 29d08dd6069f7c868da3649be1e55407cdc445c0 Mon Sep 17 00:00:00 2001 From: Stealownz Date: Tue, 11 Oct 2022 21:52:33 +0800 Subject: [PATCH 1/2] Fix Inferno Fork's OnFire debuff causing Bouncer reject abnormal buff Inferno Fork's OnFire debuff was buffed up to `60 * Main.rand.Next(8, 16)` --- CHANGELOG.md | 1 + TShockAPI/Bouncer.cs | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3d5d5d42..1e50efac 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -38,6 +38,7 @@ This is the rolling changelog for TShock for Terraria. Use past tense when addin * Allow Blood Butcherer and Shimmer buffs to be applied to NPCs by players. (@drunderscore) * In OTAPI 3.1.11-alpha, chest stacking was fixed. (@SignatureBeef) * In OTAPI 3.1.12-alpha, "server world deletions" were fixed. (@SignatureBeef) +* Fix Inferno Fork causing kick from rejected abnormal buff. (@Stealownz) ## TShock 4.5.18 * Fixed `TSPlayer.GiveItem` not working if the player is in lava. (@PotatoCider) diff --git a/TShockAPI/Bouncer.cs b/TShockAPI/Bouncer.cs index 8b46d17d..96810069 100644 --- a/TShockAPI/Bouncer.cs +++ b/TShockAPI/Bouncer.cs @@ -2527,7 +2527,7 @@ namespace TShockAPI { BuffID.RainbowWhipNPCDebuff, 240 }, // BuffID: 316 { BuffID.MaceWhipNPCDebuff, 240 }, // BuffID: 319 { BuffID.GelBalloonBuff, 1800 }, // BuffID: 320 - { BuffID.OnFire3, 360 }, // BuffID: 323 + { BuffID.OnFire3, 960 }, // BuffID: 323 { BuffID.Frostburn2, 900 }, // BuffID: 324 { BuffID.BoneWhipNPCDebuff, 240 }, // BuffID: 326 { BuffID.TentacleSpike, 540 }, // BuffID: 337 From 3364a558c1a2b341d2807d1b660ce4149c649ff0 Mon Sep 17 00:00:00 2001 From: Stealownz Date: Fri, 14 Oct 2022 20:32:49 +0800 Subject: [PATCH 2/2] Fixed Changelog.md --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1e50efac..98df705d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -38,7 +38,7 @@ This is the rolling changelog for TShock for Terraria. Use past tense when addin * Allow Blood Butcherer and Shimmer buffs to be applied to NPCs by players. (@drunderscore) * In OTAPI 3.1.11-alpha, chest stacking was fixed. (@SignatureBeef) * In OTAPI 3.1.12-alpha, "server world deletions" were fixed. (@SignatureBeef) -* Fix Inferno Fork causing kick from rejected abnormal buff. (@Stealownz) +* Fixed Inferno Fork causing kick from rejected abnormal buff. (@Stealownz) ## TShock 4.5.18 * Fixed `TSPlayer.GiveItem` not working if the player is in lava. (@PotatoCider)