Merge branch 'general-devel' into saveonlyafterjoin

This commit is contained in:
Chris 2023-03-25 15:20:32 +10:30 committed by GitHub
commit ddc9d776fc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 0 deletions

View file

@ -38,6 +38,10 @@ namespace TShockAPI.Handlers
{
TileID.JungleGrass
} },
{ TileID.AshPlants, new HashSet<ushort>()
{
TileID.AshGrass
} },
};
/// <summary>
@ -67,6 +71,10 @@ namespace TShockAPI.Handlers
{
9, 10, 11, 12, 13, 14, 15, 16,
} },
{ TileID.AshPlants, new HashSet<ushort>()
{
6, 7, 8, 9, 10,
} },
};
/// <summary>

View file

@ -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)