diff --git a/CHANGELOG.md b/CHANGELOG.md index 92a4b919..80318d35 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,7 @@ This is the rolling changelog for TShock for Terraria. Use past tense when addin ## Upcoming Changes * API: Fixed chat line breaks when using chat tags and long strings of text (@ProfessorXZ) +* API: Added ItemForceIntoChest hook (@WhiteXZ) * The setdungeon command correctly uses tshock.world.setdungeon as its permission (@OnsenManju) * Fixed clients being able to "Catch" and remove NPCs (@ProfessorXZ) * Fixed clients being able to remove other players' portals (@ProfessorXZ) @@ -14,6 +15,7 @@ This is the rolling changelog for TShock for Terraria. Use past tense when addin * Fixed a bug involving Item Frames which allowed players to duplicate items (@ProfessorXZ) * Fixed an issue allowing clients to teleport NPCs to arbitrary locations (@ProfessorXZ) * Fixed a bug where players would get teleported to their previous location after dismounting the Unicorn Mount (@ProfessorXZ) +* Players can no longer quick stack items into region protected chests (@ProfessorXZ) ## TShock 4.3.17 diff --git a/TShockAPI/TShock.cs b/TShockAPI/TShock.cs index 275ad29f..82192c32 100755 --- a/TShockAPI/TShock.cs +++ b/TShockAPI/TShock.cs @@ -45,7 +45,7 @@ namespace TShockAPI /// This is the TShock main class. TShock is a plugin on the TerrariaServerAPI, so it extends the base TerrariaPlugin. /// TShock also complies with the API versioning system, and defines its required API version here. /// - [ApiVersion(1, 23)] + [ApiVersion(1, 24)] public class TShock : TerrariaPlugin { /// VersionNum - The version number the TerrariaAPI will return back to the API. We just use the Assembly info.