TerrariaServer.TShock 4.4.0.20200627-pre12

This is a prerelease version of TerrariaServer.TShock.
There is a newer version of this package available.
See the version list below for details.
dotnet add package TerrariaServer.TShock --version 4.4.0.20200627-pre12
NuGet\Install-Package TerrariaServer.TShock -Version 4.4.0.20200627-pre12
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="TerrariaServer.TShock" Version="4.4.0.20200627-pre12" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add TerrariaServer.TShock --version 4.4.0.20200627-pre12
#r "nuget: TerrariaServer.TShock, 4.4.0.20200627-pre12"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install TerrariaServer.TShock as a Cake Addin
#addin nuget:?package=TerrariaServer.TShock&version=4.4.0.20200627-pre12&prerelease

// Install TerrariaServer.TShock as a Cake Tool
#tool nuget:?package=TerrariaServer.TShock&version=4.4.0.20200627-pre12&prerelease

TShock is a toolbox for Terraria servers and communities. That toolbox is jam packed with anti-cheat tools, server-side characters, groups, permissions, item bans, tons of commands, and limitless potential. It's one of a kind.
This package was uploaded from CI service by SGKoishi, NOT official TShock Team.

Product Compatible and additional computed target framework versions.
.NET Framework net452 is compatible.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
4.5.5 920 8/10/2021
4.5.2 491 4/22/2021
4.5.0 354 4/14/2021
4.4.0.20201015-pre13 342 10/24/2020
4.4.0.20200627-pre12 359 7/6/2020
4.4.0.20200605-pre11 586 6/5/2020
4.4.0.20200604-pre10 557 6/4/2020

TShock 4.4.0 Pre-release 12 for Terraria 1.4.0.5



To upgrade, simply overwrite all applicable files in your existing server folder. TShock releases are designed so that you can upgrade by copying all files over and clicking "yes" to overwrite any duplicates. All existing world and character and database data will be saved.

* Fixed various bugs related to Snake Charmer's Flute. (@rustly)  

 * The entirety of the snake now places.  

 * The old snake now removes when placing a new snake.

 * Players are no longer disabled for breaking TilePlace/TileKill thresholds when modifying snakes.  

* Prevented players from seeing the npc spawnrate change permission error on join. (@rustly)

* Installed new sprinklers!

* Organized parameters by category and relevance in the `config.json` file. (@kubedzero)

* Fixed multiple holes in Bouncer OnTileData. (@Patrikkk, @hakusaro)

 * Issue where players could replace tiles with banned tiles without permission.

 * Including replace action in TilePlace threshold incrementation, so players cannot bypass the threshold while replacing tiles/walls.

 * Including check for maxTileSets when player is replacing tiles, so players cannot send invalid tile data through the replace tile action.

 * Including a check for ReplaceWall when the tile is a Breakable/CutTile.

* Adding checks in Bouncer OnNewProjectile (@Patrikkk):

 * For valid golf club and golf ball creation.

 * Renamed stabProjectile to directionalProjectile for a more accurate naming.

 * Adding staff projectiles to the directionalProjectiles Dictionary to include staffs in the valid projectile creation check.

 * Adding GolfBallItemIDs list in Handlers.LandGolfBallInCupHandler.cs

* Fixed an issue in the SendTileSquare handler that was rejecting valid tile objects. (@QuiCM)

* Fixed the issue where players were unable to place regular ropes because of the valid placement being caught in Bouncer OnTileEdit. (@Patrikkk)

* Added pet license usage permissions to `trustedadmin` and `owner` groups. Do note that this has a high network usage and can be easily be abused so it is not recommended to give out this permission to lower level groups. (@moisterrific)

* Removed checks that prevented people placing personal storage tiles in SSC as the personal storage is synced with the server. (@Patrikkk)

* Cleaned up a check in Bouner OnTileEdit where it checks for using the respective item when placing a tile to make it clearer. This change also fixed the issue in a previous commit where valid replace action was caught. Moved the check for max tile/wall types to the beginning of the method. (@Patrikkk)

* Improved clarity for insufficient permission related error messages. (@moisterrific)

* Removed redundant Boulder placement check that prevented placing chests on them, as it is no longer possible to place a chest on a boulder, so nothing crashes the server. "1.2.3: Boulders with Chests on them no longer crash the game if the boulder is hit." (@kevzhao2, @Patrikkk)

* `/itemban` - `/projban` - `/tileban` - Added a `default:` case to the commands so an invalid subcommand promts the player to enter the help subcommand to get more information on valid subcommands. (@Patrikkk)

* `/world` - Renamed to /worldinfo to be more accurate to it's function. Command now displays the world's `Seed`. Reformatted the world information so each line isn't repeatedly starting with "World". (@Patrikkk)

* `/who` - Changed the display format of the online players when the `-i` flag is used. From `PlayerName (ID: 0, ID: 0)` to `PlayerName (Index: 0, Account ID: 0)` for clarification. (@Patrikkk)

* Added DisplayDollItemSync event. An event that is called when a player modifies the slot of a DisplayDoll (Mannequin). This event provides information about the current item in the displaydoll, as well as the item that the player is about to set. (@Patrikkk)

* Added DisplayDollItemSyncHandler, which checks for building permissions of the player at the position of the DisplayDoll. (If they do not have permissions, it means they are hacking as they could not even open the doll in the first place.) (@Patrikkk)

* Added RequestTileEntity packet handling. (@Patrikkk)

 * Implemented the OnRequestTileEntityInteraction even hook in GetDataHandler. (@Patrikkk)

 * Created RequestTileEntityInteractionHandler which checks for building permissions when the player is attempting to open a display doll (Mannequin) or a Hat Rack. This now prevents players from opening a Mannequin or a Hat Rack if they have no building permissions at the position of these tile entities. As of 1.4.0.5, these are the only two items that use this packet. (@Patrikkk)