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, + } }, }; /// diff --git a/docs/changelog.md b/docs/changelog.md index 2f0f20c9..469a4b13 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -107,6 +107,7 @@ Use past tense when adding new entries; sign your name off when you add or chang * Fixed unable to use Purification/Evil Powder in jungle. (@sgkoishi) * Set the `GetDataHandledEventArgs.Player` property for the `SyncTilePicking` data handler. (@drunderscore) * Relaxed custom death message restrictions to allow Inferno potions in PvP. (@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)