TShock 4.5.5 #2409
hakusaro
started this conversation in
Show and tell
TShock 4.5.5
#2409
Replies: 2 comments 3 replies
-
I think the link should be corrected, it points to the plugin repository |
Beta Was this translation helpful? Give feedback.
2 replies
-
If I can ask:
Why this has been changed? Sometimes I've experienced "lag spike" so maybe it was a good idea to inform user about it. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
This version of TShock includes a fix for GHSA-jq4j-v8pr-jv7j. For more information, see the advisory.
We are aware of at least three other security issues, but they are still in-progress. At least one of those will be shipping in the near future.
Notable changes
/slay
as an alias for/kill
to be more consistent with other server mods. (@hakusaro)/god
as an alias for/godmode
to be more consistent with other server mods. (@hakusaro)Amethyst Gemtree
text. (@hakusaro)CTRL + C
/ interactive console interrupt not safely shutting down the server. Now, interrupts will cause a safe shutdown (saving the world and disconnecting all players before fully shutting down). Previously, interrupts caused an unsafe shutdown (not saving the world). (@hakusaro)Color.LimeGreen
instead ofColor.Green
.Color.Green
looks ugly.Color.LimeGreen
looks less ugly but isn't as offensively bright as pure green. (@hakusaro)/home
allowing players to bypass the respawn timer. (@hakusaro, @moisterrific, @Arthri)SuppressPermissionFailureNotices
. When set totrue
, the server will not send warning messages to players when they fail a build permission check fromTSPlayer.HasBuildPermission
(even ifshouldWarnPlayer
is set to true. (@hakusaro)/warp send
failing a nullcheck if the warp didn't exist. The previous behavior may have always been buggy or broken. In other words, sending someone to a warp that doesn't exist should result in a nicer error. (@hakusaro, @punchready)/group del
allowing server operators to delete the default group that guests are put into. This is a really critical group and the server doesn't behave correctly when it happens. As a result, it's better to prevent this from happening than not. Additionally,GroupManagerException
s will be thrown if this is attempted programmatically. Finally, if the exception is thrown in response to/group del
(or if any other exception is thrown that the command handler can handle), the stack trace will no longer be present. Fixes #2165. (@hakusaro, @DeveloperLuxo, @Rozen4334, @moisterrific, @bartico6, @Quinci135)ConfigFile
class. If you are updating a plugin, you should useTShock.Config.Settings
instead of the accessor you were using. This is typically a really easy change. For most plugin authors, updating to the new config format is as simple as changing the reference to the old static config to point to the new location. If you were using this for your own configs, you should swap to using aIConfigFile
(seeTShockAPI.Configuration.ConfigFile
). (@hakusaro, @bartico6)Main.worldPathName
to/worldinfo
command. Now, if you need to see what the location on disk for your world file is, you can simply run/worldinfo
to find out. This is particularly helpful on Linux and macOS, where the world path isn't obvious. (@hakusaro)-disable-commands
to disable the input thread, but by default, it will be enabled. Fixes #1450. (@DeathCradle, @QuiCM)summonboss
permission check for Prismatic Lacewing. Players who do not have said permission will be unable to kill this critter, as it will summon the Empress of Light. Also added support for theAnonymousBossInvasions
config option, if this is set tofalse
it will now broadcast the name of the player who summoned her. (@moisterrific)ForceTime
config setting check for Enchanted Sundial usage. IfForceTime
is set to anything other thannormal
, Sundial use will be rejected as this would lead to very janky game behavior. Additionally, players withcfgreload
permission will be advised to change it back tonormal
in order to use sundial. (@moisterrific, @bartico6)%onlineplayers%
and%serverslots%
placeholders for MOTD. The default MOTD message was also updated to use this. (@moisterrific, @bartico6)TilePlacementValid
when validating tile coordinates, which could cause a DoS attack due to unexpectedly large world framing. The list below shows the corrected methods within Bouncer. This was assigned GHSA-jq4j-v8pr-jv7j. (@drunderscore)OnTileEdit
: The check was moved to be the first, and will no longerSendTileSquare
upon failure.OnPlaceObject
: The check was moved to be the first, and will no longerSendTileSquare
upon failure.OnPlaceTileEntity
: The check was newly added.OnPlaceItemFrame
: The check was newly added.OnFoodPlatterTryPlacing
: The check was newly added.Updating
To update TShock, simply replace all of the files in your server folder with those from the release folder.
This discussion was created from the release TShock 4.5.5.
Beta Was this translation helpful? Give feedback.
All reactions