From 958913ef134bd45a7ad446b99bec4f1566417482 Mon Sep 17 00:00:00 2001 From: ELI JOSEPH BRADLEY Date: Mon, 14 Feb 2022 12:22:31 -0600 Subject: [PATCH 1/3] Remove extraneous space. Remove space following backslash in multi-line command, causing failure in Bash 5.1. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 93d08ba6..ebc852bb 100644 --- a/README.md +++ b/README.md @@ -207,7 +207,7 @@ You need to re-run the patcher any time `OTAPI` updates. You need to rebuild `Te $ cd ./TerrariaServerAPI/TShock.Modifications.Bootstrapper/bin/$BUILD_MODE/ $ mono TShock.Modifications.Bootstrapper.exe -in=OTAPI.dll \ - -mod=../../../TShock.Modifications.**/bin/$BUILD_MODE/TShock.Modifications.*.dll \ + -mod=../../../TShock.Modifications.**/bin/$BUILD_MODE/TShock.Modifications.*.dll \ -o=Output/OTAPI.dll 1. Verify that non-zero modifications ran successfully. Then, build the Terraria Server API executable. From 86527974de59e74b86c4fc567a74b2fc05b00299 Mon Sep 17 00:00:00 2001 From: ELI JOSEPH BRADLEY Date: Mon, 14 Feb 2022 12:25:31 -0600 Subject: [PATCH 2/3] Update CHANGELOG.md --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 792052f8..4650c02d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -23,6 +23,7 @@ This is the rolling changelog for TShock for Terraria. Use past tense when addin * Fixed the ability to create custom messages with your death (or the death of another player) (@AgaSpace) * Added the `OnSignRead` handler in `GetDataHandler`, and added the `SignRead` event. Added check to ensure the sign being read is within world bounds `(x >= 0 && y >= 0 && x < Main.maxTilesX && y < Main.maxTilesY)`. (@drunderscore) * Added check to `HandleNpcTalk` to ensure the passed NPC index is within bounds (>= -1 && < `Main.maxNPCs`). (@drunderscore) +* Removed extraneous space causing build commands in README to fail. (@EtherTyper) ## TShock 4.5.11 * Add the new allowed buff TentacleSpike to NPC buff cheat detection bouncer. (@sgkoishi) From 956b5a5243d97c4c52eac46f0c5d4680cf69b23b Mon Sep 17 00:00:00 2001 From: ELI JOSEPH BRADLEY Date: Mon, 14 Feb 2022 13:06:34 -0600 Subject: [PATCH 3/3] Move to correct section of CHANGELOG. --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4650c02d..49b2e774 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,6 +16,7 @@ This is the rolling changelog for TShock for Terraria. Use past tense when addin * Added filter in `GetDataHandlers.HandleCatchNpc` that stops unregistered and logged out players on SSC servers to catch critters. (@tru321) * Fixed rejection check inside of `HandlePaintTile` to account for the Paint Sprayer (or Architect Gizmo Pack) being inside your inventory, rather than on an accessory slot. (@drunderscore) * Added the lanterns night event to the `/worldevent` command. (@0x3fcf1bbd) +* Removed extraneous space causing build commands in README to fail. (@EtherTyper) ## TShock 4.5.12 * Fixed the ability to spawn Zenith projectile with non-original items. (@AgaSpace) @@ -23,7 +24,6 @@ This is the rolling changelog for TShock for Terraria. Use past tense when addin * Fixed the ability to create custom messages with your death (or the death of another player) (@AgaSpace) * Added the `OnSignRead` handler in `GetDataHandler`, and added the `SignRead` event. Added check to ensure the sign being read is within world bounds `(x >= 0 && y >= 0 && x < Main.maxTilesX && y < Main.maxTilesY)`. (@drunderscore) * Added check to `HandleNpcTalk` to ensure the passed NPC index is within bounds (>= -1 && < `Main.maxNPCs`). (@drunderscore) -* Removed extraneous space causing build commands in README to fail. (@EtherTyper) ## TShock 4.5.11 * Add the new allowed buff TentacleSpike to NPC buff cheat detection bouncer. (@sgkoishi)