From 9a0269fb83fff1a66d87c53587111f23193968e7 Mon Sep 17 00:00:00 2001 From: punchready <22683812+punchready@users.noreply.github.com> Date: Tue, 28 Feb 2023 22:05:25 +0100 Subject: [PATCH 1/2] Update definitions for Flower Boots to allow Ash Plants --- TShockAPI/Handlers/SendTileRectHandler.cs | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/TShockAPI/Handlers/SendTileRectHandler.cs b/TShockAPI/Handlers/SendTileRectHandler.cs index 3ff85fea..b66a72fa 100644 --- a/TShockAPI/Handlers/SendTileRectHandler.cs +++ b/TShockAPI/Handlers/SendTileRectHandler.cs @@ -38,6 +38,10 @@ namespace TShockAPI.Handlers { TileID.JungleGrass } }, + { TileID.AshPlants, new HashSet() + { + TileID.AshGrass + } }, }; /// @@ -67,6 +71,10 @@ namespace TShockAPI.Handlers { 9, 10, 11, 12, 13, 14, 15, 16, } }, + { TileID.AshPlants, new HashSet() + { + 6, 7, 8, 9, 10, + } }, }; /// From defbe5c34fed7173877296cf04fcfb0cf6df312b Mon Sep 17 00:00:00 2001 From: punchready <22683812+punchready@users.noreply.github.com> Date: Tue, 28 Feb 2023 22:09:36 +0100 Subject: [PATCH 2/2] Update changelog --- docs/changelog.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/changelog.md b/docs/changelog.md index be96f88c..061988a2 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -106,6 +106,7 @@ Use past tense when adding new entries; sign your name off when you add or chang * Allowed multiple test cases to be in TShock's test suite. (@drunderscore) * Fixed unable to use Purification/Evil Powder in jungle. (@sgkoishi) * Set the `GetDataHandledEventArgs.Player` property for the `SyncTilePicking` data handler. (@drunderscore) +* Allowed Flower Boots to place Ash Flowers on Ash Grass blocks. (@punchready) ## TShock 5.1.3 * Added support for Terraria 1.4.4.9 via OTAPI 3.1.20. (@SignatureBeef)