From cdb23b0eb3a99b3bd878aa4d901b14d2ac5e7446 Mon Sep 17 00:00:00 2001 From: Thomas Hinkle Date: Mon, 24 Apr 2023 12:58:14 -0500 Subject: [PATCH 01/36] Added a couple of QoL mods --- CHANGELOG.md | 11 +++++++++++ index.toml | 10 ++++++++++ mods/findme.pw.toml | 13 +++++++++++++ mods/seasonhud.pw.toml | 13 +++++++++++++ pack.toml | 4 ++-- 5 files changed, 49 insertions(+), 2 deletions(-) create mode 100644 mods/findme.pw.toml create mode 100644 mods/seasonhud.pw.toml diff --git a/CHANGELOG.md b/CHANGELOG.md index ad15a7c..22298e1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,14 @@ +# 1.0.15 + +## Mods + +### Additions + +- FindMe + - Renders smoke on top of chests/containers that have the item you search for. Default key is "Y". +- Season HUD + - Adds an element to the map that displays the current season and day for Serene Seasons. + # 1.0.14 ## Config Changes diff --git a/index.toml b/index.toml index a3f3ef8..e11cde8 100644 --- a/index.toml +++ b/index.toml @@ -413,6 +413,11 @@ file = "mods/fastworkbench.pw.toml" hash = "5db298a5768d41bc516ac521d95588ff074e5af6bd17567628d10f319ebd85ae" metafile = true +[[files]] +file = "mods/findme.pw.toml" +hash = "903937f8f4532be3ca2a749df02e72bc8a5b8602da7341d588539c5bdc8b2482" +metafile = true + [[files]] file = "mods/flywheel.pw.toml" hash = "3e9b9722da123b1d4120f0d9aba8de9968aba4aad6e9c7564423672171e00d9e" @@ -913,6 +918,11 @@ file = "mods/scannable.pw.toml" hash = "5e2d065192f522470a9a78987c66c979faa2c908bb0328def7ac48da5b23fe1e" metafile = true +[[files]] +file = "mods/seasonhud.pw.toml" +hash = "f5f389dfb743543035a4fd4412658371fde9d08948d22275ddde48ee8f016dbb" +metafile = true + [[files]] file = "mods/sebastrnlib.pw.toml" hash = "8bd06b0803e7a21fbe6c287828128665ee753661cd7253f8653df3fd4654804a" diff --git a/mods/findme.pw.toml b/mods/findme.pw.toml new file mode 100644 index 0000000..ec5e8c0 --- /dev/null +++ b/mods/findme.pw.toml @@ -0,0 +1,13 @@ +name = "FindMe" +filename = "findme-3.1.0-forge.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "02678b4ccf051b040d7e2021d153bf346399c226" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 3910001 +project-id = 291936 diff --git a/mods/seasonhud.pw.toml b/mods/seasonhud.pw.toml new file mode 100644 index 0000000..cd2f403 --- /dev/null +++ b/mods/seasonhud.pw.toml @@ -0,0 +1,13 @@ +name = "SeasonHUD" +filename = "seasonhud-1.19.2-1.4.12.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "91d7aef918db421aaa872e5ffb18ce4106b5c940" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 4502920 +project-id = 690971 diff --git a/pack.toml b/pack.toml index 91bf034..674cad5 100644 --- a/pack.toml +++ b/pack.toml @@ -1,12 +1,12 @@ name = "ScrumptiousCraft Um" author = "razage" -version = "1.0.14" +version = "1.0.15" pack-format = "packwiz:1.1.0" [index] file = "index.toml" hash-format = "sha256" -hash = "bd20d3e156a06d65e7b2d1ba0c89e11947177b170dbd080a11e2335da4b3f186" +hash = "65d05d33f4b28f3f4de389eaecabb3a123e78b1f1b0f792d91b3ceeeef4a96aa" [versions] forge = "43.2.8" From 59abd132adeb9fb29e0e9693c2258cdf2b032ca1 Mon Sep 17 00:00:00 2001 From: Thomas Hinkle Date: Tue, 25 Apr 2023 00:52:16 -0500 Subject: [PATCH 02/36] Addressing some errors and patching some holes in technology. --- CHANGELOG.md | 24 +++ config/Mekanism/world.toml | 4 +- config/bno-common.toml | 2 +- config/moremekanismprocessing-common.toml | 186 ++++++++++++++++++++++ index.toml | 39 ++++- mods/advanced-peripherals.pw.toml | 13 ++ mods/connected-glass.pw.toml | 13 ++ mods/laserio.pw.toml | 13 ++ mods/modular-routers.pw.toml | 13 ++ mods/more-mekanism-processing.pw.toml | 13 ++ mods/observable.pw.toml | 13 ++ mods/pipez.pw.toml | 13 ++ pack.toml | 4 +- 13 files changed, 343 insertions(+), 7 deletions(-) create mode 100644 config/moremekanismprocessing-common.toml create mode 100644 mods/advanced-peripherals.pw.toml create mode 100644 mods/connected-glass.pw.toml create mode 100644 mods/laserio.pw.toml create mode 100644 mods/modular-routers.pw.toml create mode 100644 mods/more-mekanism-processing.pw.toml create mode 100644 mods/observable.pw.toml create mode 100644 mods/pipez.pw.toml diff --git a/CHANGELOG.md b/CHANGELOG.md index 22298e1..e080939 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,27 @@ +# 1.0.16 + +## Config Changes + +- Mekanism lead and uranium should no longer be spawning. +- Removed Nether Aluminum Ore since no other mods use it. + +## Mods + +### Additions + +- Advanced Peripherals + - Adds some advanced peripherals for ComputerCraft. +- Connected Glass + - Adds a type of glass that has no borders. +- LaserIO + - Adds lasers that function like EnderIO conduits. +- More Mekanism Processing + - Adds Mekanism 5x processing support to several additional materials. +- Observable + - Adds a tool for admins to diagnose what's making the server lag. +- Pipez + - Adds some basic pipes for transferring items, power, fluids, and gas. + # 1.0.15 ## Mods diff --git a/config/Mekanism/world.toml b/config/Mekanism/world.toml index 0248278..8ecff4b 100644 --- a/config/Mekanism/world.toml +++ b/config/Mekanism/world.toml @@ -225,7 +225,7 @@ #Generation Settings for uranium ore. [world_generation.uranium] #Determines if uranium ore should be added to world generation. - shouldGenerate = true + shouldGenerate = false #small uranium vein Generation Settings. [world_generation.uranium.small] @@ -399,7 +399,7 @@ #Generation Settings for lead ore. [world_generation.lead] #Determines if lead ore should be added to world generation. - shouldGenerate = true + shouldGenerate = false #normal lead vein Generation Settings. [world_generation.lead.normal] diff --git a/config/bno-common.toml b/config/bno-common.toml index 346edef..429c53e 100644 --- a/config/bno-common.toml +++ b/config/bno-common.toml @@ -89,7 +89,7 @@ #Generate Osmium Ore osmium = true #Generate Aluminum Ore - aluminum = true + aluminum = false #Generate Lead Ore lead = true #Generate Diamond Ore diff --git a/config/moremekanismprocessing-common.toml b/config/moremekanismprocessing-common.toml new file mode 100644 index 0000000..713bd13 --- /dev/null +++ b/config/moremekanismprocessing-common.toml @@ -0,0 +1,186 @@ + +[general] + #true : show all recipes + #false : hide ore not exist recipes (can hide recipes when some mod not installed) + showOreNotExistRecipes = false + +#processingLevel : set ores processing max level +# 5 : can into up x5 (able all procssing) +# 4 : can into up x4 (disable ore dissolution, slurry crystalizing) +# 3 : can into up x3 (disable injecting) +# 2 : can into up x2 (disable purifying and clumps crushing) +# 1 : reserved (currently same with 0) +# 0 : disable all processing in this mod +#disabled processing items are hided your world +[ores] + + [ores.aluminum] + #Range: 0 ~ 5 + processingLevel = 0 + + [ores.amethyst] + #Range: 0 ~ 5 + processingLevel = 5 + + [ores.apatite] + #Range: 0 ~ 5 + processingLevel = 5 + + [ores.azure_silver] + #Range: 0 ~ 5 + processingLevel = 0 + + [ores.bismuth] + #Range: 0 ~ 5 + processingLevel = 0 + + [ores.bort] + #Range: 0 ~ 5 + processingLevel = 0 + + [ores.cinnabar] + #Range: 0 ~ 5 + processingLevel = 5 + + [ores.cobalt] + #Range: 0 ~ 5 + processingLevel = 0 + + [ores.crimson_iron] + #Range: 0 ~ 5 + processingLevel = 0 + + [ores.desh] + #Range: 0 ~ 5 + processingLevel = 0 + + [ores.dilithium] + #Range: 0 ~ 5 + processingLevel = 0 + + [ores.draconium] + #Range: 0 ~ 5 + processingLevel = 0 + + [ores.electrotine] + #Range: 0 ~ 5 + processingLevel = 0 + + [ores.green_sapphire] + #Range: 0 ~ 5 + processingLevel = 0 + + [ores.iridium] + #Range: 0 ~ 5 + processingLevel = 0 + + [ores.lithium] + #Range: 0 ~ 5 + processingLevel = 5 + + [ores.nickel] + #Range: 0 ~ 5 + processingLevel = 5 + + [ores.niter] + #Range: 0 ~ 5 + processingLevel = 5 + + [ores.peridot] + #Range: 0 ~ 5 + processingLevel = 0 + + [ores.platinum] + #Range: 0 ~ 5 + processingLevel = 0 + + [ores.ruby] + #Range: 0 ~ 5 + processingLevel = 0 + + [ores.sapphire] + #Range: 0 ~ 5 + processingLevel = 0 + + [ores.ostrum] + #Range: 0 ~ 5 + processingLevel = 0 + + [ores.calorite] + #Range: 0 ~ 5 + processingLevel = 0 + + [ores.silver] + #Range: 0 ~ 5 + processingLevel = 5 + + [ores.sulfur] + #Range: 0 ~ 5 + processingLevel = 5 + + [ores.titanium] + #Range: 0 ~ 5 + processingLevel = 0 + + [ores.tungsten] + #Range: 0 ~ 5 + processingLevel = 0 + + [ores.zinc] + #Range: 0 ~ 5 + processingLevel = 5 + + [ores.coal] + #exist for modpacks, set greater than 2 to enable this material recipes + #less than or equals 2 is use Mekanism Default Recipes + # warning : when enabled, ore block can infinitely regenerate using Mekanism Combiner Default Recipe + # propose remove/override Mekanism Combiner Default Recipe + # e.g.) "ingredient":{"tag":"forge:dusts/coal"}},"amount":8 + #Range: 0 ~ 5 + processingLevel = 0 + + [ores.lapis] + #exist for modpacks, set greater than 2 to enable this material recipes + #less than or equals 2 is use Mekanism Default Recipes + # warning : when enabled, ore block can infinitely regenerate using Mekanism Combiner Default Recipe + # propose remove/override Mekanism Combiner Default Recipe + # e.g.) "ingredient":{"tag":"forge:dusts/lapis"}},"amount":8 + #Range: 0 ~ 5 + processingLevel = 0 + + [ores.diamond] + #exist for modpacks, set greater than 2 to enable this material recipes + #less than or equals 2 is use Mekanism Default Recipes + # warning : when enabled, ore block can infinitely regenerate using Mekanism Combiner Default Recipe + # propose remove/override Mekanism Combiner Default Recipe + # e.g.) "ingredient":{"tag":"forge:dusts/diamond"}},"amount":8 + #Range: 0 ~ 5 + processingLevel = 0 + + [ores.redstone] + #exist for modpacks, set greater than 2 to enable this material recipes + #less than or equals 2 is use Mekanism Default Recipes + # warning : when enabled, ore block can infinitely regenerate using Mekanism Combiner Default Recipe + # propose remove/override Mekanism Combiner Default Recipe + # e.g.) "ingredient":{"tag":"forge:dusts/redstone"}},"amount":8 + #Range: 0 ~ 5 + processingLevel = 0 + + [ores.emerald] + #exist for modpacks, set greater than 2 to enable this material recipes + #less than or equals 2 is use Mekanism Default Recipes + # warning : when enabled, ore block can infinitely regenerate using Mekanism Combiner Default Recipe + # propose remove/override Mekanism Combiner Default Recipe + # e.g.) "ingredient":{"tag":"forge:dusts/emerald"}},"amount":8 + #Range: 0 ~ 5 + processingLevel = 0 + + [ores.quartz] + #exist for modpacks, set greater than 2 to enable this material recipes + #less than or equals 2 is use Mekanism Default Recipes + # warning : when enabled, ore block can infinitely regenerate using Mekanism Combiner Default Recipe + # propose remove/override Mekanism Combiner Default Recipe + # e.g.) "ingredient":{"tag":"forge:dusts/quartz"}},"amount":8 + #Range: 0 ~ 5 + processingLevel = 0 + diff --git a/index.toml b/index.toml index e11cde8..0228b04 100644 --- a/index.toml +++ b/index.toml @@ -6,7 +6,7 @@ hash = "21b0ac69e8708a8d05930fe6f2b7b6127419954d747ee00d485e9b0f61a0dff5" [[files]] file = "config/Mekanism/world.toml" -hash = "8603b247cecb151a056178a85450ccd45f8cdda9103de9a5ea7b02aef74d10fc" +hash = "134e92cee6cdd20181232fcbfe9213f3c87cd9b20405eadde3fb649fed6748ae" [[files]] file = "config/almostunified/unify.json" @@ -14,7 +14,7 @@ hash = "efeedd71425606e55f2c16be71d0d325607045d3e914f886b0b57ed09b65413a" [[files]] file = "config/bno-common.toml" -hash = "14f2ca542aca5299f3eb232d23b9139595d323e54e2ffeb0398ca81422c44ab8" +hash = "418f8824835fa1e3490b26fcf43cb16d8bfb653a17a2a61b0854a7c18a0f5546" [[files]] file = "config/enhancedvisuals-client.json" @@ -98,6 +98,11 @@ file = "mods/advanced-hook-launchers.pw.toml" hash = "a7552d367b378c25bcc34a48641d42dd9332790f33bc78aef3881317ae29ff1a" metafile = true +[[files]] +file = "mods/advanced-peripherals.pw.toml" +hash = "8e686da2db44388474f16c6eba6da8529319ae3284622bd6600c1d460f5ac388" +metafile = true + [[files]] file = "mods/ai-improvements.pw.toml" hash = "7625fd02a8edcfaf66ae149456ba29e237a4740b6f2540fd2886a0ecaca189b7" @@ -248,6 +253,11 @@ file = "mods/configured.pw.toml" hash = "38abb00776d34d4c650c59ef4a75a6562c96f914cbe17f09f176a682f23fd883" metafile = true +[[files]] +file = "mods/connected-glass.pw.toml" +hash = "9a70ec2e748289f8087236ea6306b1e569c9d5d4cfd63ec2417a65a2cc30239b" +metafile = true + [[files]] file = "mods/connectivity.pw.toml" hash = "1400f0a5f428367609794c7fe3fb825163cbb6bf5b6715dff5fbfe5f02c078d2" @@ -563,6 +573,11 @@ file = "mods/kubejs.pw.toml" hash = "fc1d144633d760ad8d000ebf2c9463243c02491aaf9bedc5e8900403bb9afca8" metafile = true +[[files]] +file = "mods/laserio.pw.toml" +hash = "bbda27d3e070cbe2eec4740b93222694f0a86f50f74edde5f5b23d4c0f13f4c0" +metafile = true + [[files]] file = "mods/libipn.pw.toml" hash = "640e54f2e4f67bb03d0464b6705a0c3c8009a8215571c2970210426f78ab0e3b" @@ -683,11 +698,21 @@ file = "mods/mod-name-tooltip.pw.toml" hash = "b14e718951c8003a40ce2bc4918109a1526302adc235553efa9208d67e09e07a" metafile = true +[[files]] +file = "mods/modular-routers.pw.toml" +hash = "865ad23bdceb7e3781063d3f32015a809372c105ae038c6ad17a2501d969cfe7" +metafile = true + [[files]] file = "mods/moguns.pw.toml" hash = "e93d44a52d279845b4c14a73873260cfd94d38ea181c1386fbb9e3060ac10e7b" metafile = true +[[files]] +file = "mods/more-mekanism-processing.pw.toml" +hash = "b5d01e677ee8ece9ac4dbb95af7ede90c8056861b748ca13b529803a6ee5dc7a" +metafile = true + [[files]] file = "mods/morph-o-tool.pw.toml" hash = "2b84eb27c80b13169f0807303c6d6de47ae5fe353f0b2a6983b3b22a1d4eecd7" @@ -733,6 +758,11 @@ file = "mods/obscure-api.pw.toml" hash = "beb5669b640b6d19d294327a594060d176285439b76a39f1fc74e91774c2018d" metafile = true +[[files]] +file = "mods/observable.pw.toml" +hash = "7bc26cb7026d2ad04304e3802cbdd274be75c646cdccbdb469a5ed7d63f25547" +metafile = true + [[files]] file = "mods/openblocks-elevator.pw.toml" hash = "13e10e5493f19da1737436c19899a26845c9c965f1b00ba30ee48863f44ae324" @@ -773,6 +803,11 @@ file = "mods/pig-pen-cipher.pw.toml" hash = "13c88dde7a2157bbe8e803fc9a46a765c9c7392ff724cbe3855ae84f1f77e91b" metafile = true +[[files]] +file = "mods/pipez.pw.toml" +hash = "52f9c816f8d02ce1ffde51259c39b636207373c2de5ef754adb59e0c8ab39177" +metafile = true + [[files]] file = "mods/placebo.pw.toml" hash = "cb0af91d7b5f99b46022e3af2ef7e128028f6a2f91feb0a8f4fa22e9556f30b3" diff --git a/mods/advanced-peripherals.pw.toml b/mods/advanced-peripherals.pw.toml new file mode 100644 index 0000000..fd071a9 --- /dev/null +++ b/mods/advanced-peripherals.pw.toml @@ -0,0 +1,13 @@ +name = "Advanced Peripherals" +filename = "AdvancedPeripherals-0.7.27r.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "d6a723bddbe0984832219111a5a0c79a61ca3abf" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 4491671 +project-id = 431725 diff --git a/mods/connected-glass.pw.toml b/mods/connected-glass.pw.toml new file mode 100644 index 0000000..533118d --- /dev/null +++ b/mods/connected-glass.pw.toml @@ -0,0 +1,13 @@ +name = "Connected Glass" +filename = "connectedglass-1.1.6-forge-mc1.19.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "af57e1996cd798437d5f76747fa28fd13f323fb1" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 4293791 +project-id = 383129 diff --git a/mods/laserio.pw.toml b/mods/laserio.pw.toml new file mode 100644 index 0000000..28d5731 --- /dev/null +++ b/mods/laserio.pw.toml @@ -0,0 +1,13 @@ +name = "LaserIO" +filename = "laserio-1.5.2.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "4db73049a73fddd8cbf5d66e9fd2a790ee7b30a1" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 4066818 +project-id = 626839 diff --git a/mods/modular-routers.pw.toml b/mods/modular-routers.pw.toml new file mode 100644 index 0000000..c66ba3a --- /dev/null +++ b/mods/modular-routers.pw.toml @@ -0,0 +1,13 @@ +name = "Modular Routers" +filename = "modular-routers-1.19.2-10.2.0-3.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "37361a5721bfdb07ae1cc583ab0f244d85bf5189" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 4076671 +project-id = 250294 diff --git a/mods/more-mekanism-processing.pw.toml b/mods/more-mekanism-processing.pw.toml new file mode 100644 index 0000000..cd9819d --- /dev/null +++ b/mods/more-mekanism-processing.pw.toml @@ -0,0 +1,13 @@ +name = "More Mekanism Processing" +filename = "MoreMekanismProcessing-1.19.2-3.0.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "023e0a5b9d0a7d978d7848432520f9f7d072ed91" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 3944669 +project-id = 511965 diff --git a/mods/observable.pw.toml b/mods/observable.pw.toml new file mode 100644 index 0000000..f101ac1 --- /dev/null +++ b/mods/observable.pw.toml @@ -0,0 +1,13 @@ +name = "Observable" +filename = "observable-3.3.1.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "83cbc1e8220231b645ac14578f1a2a85fa15fe29" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 4193014 +project-id = 509575 diff --git a/mods/pipez.pw.toml b/mods/pipez.pw.toml new file mode 100644 index 0000000..29c6465 --- /dev/null +++ b/mods/pipez.pw.toml @@ -0,0 +1,13 @@ +name = "Pipez" +filename = "pipez-1.19.2-1.1.0.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "740f05030059ffe6da2e0ba8f4f451874688bdde" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 4496931 +project-id = 443900 diff --git a/pack.toml b/pack.toml index 674cad5..9517e7d 100644 --- a/pack.toml +++ b/pack.toml @@ -1,12 +1,12 @@ name = "ScrumptiousCraft Um" author = "razage" -version = "1.0.15" +version = "1.0.16" pack-format = "packwiz:1.1.0" [index] file = "index.toml" hash-format = "sha256" -hash = "65d05d33f4b28f3f4de389eaecabb3a123e78b1f1b0f792d91b3ceeeef4a96aa" +hash = "61cea5fc6e6d6770287ca74b0323154d268dc118cd597962c1cb7c9855b1598f" [versions] forge = "43.2.8" From 72a87e8c4db46102bdc8cd56c3032e5553c46c61 Mon Sep 17 00:00:00 2001 From: Thomas Hinkle Date: Tue, 25 Apr 2023 20:57:02 -0500 Subject: [PATCH 03/36] Added some configs to address some issues that came up in play testing. --- CHANGELOG.md | 9 ++++ config/canary.properties | 10 ++++ config/carryon-common.toml | 79 ++++++++++++++++++++++++++++++++ kubejs/server_scripts/balance.js | 28 +++++++++++ 4 files changed, 126 insertions(+) create mode 100644 config/canary.properties create mode 100644 config/carryon-common.toml create mode 100644 kubejs/server_scripts/balance.js diff --git a/CHANGELOG.md b/CHANGELOG.md index e080939..623d245 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ +# 1.0.17 + +## Config Changes + +- Made the recipe for RFTool's Quarry Card much more expensive. +- Lowered the cost of Mekanism's Digital Miner. +- Disabled the ability to "pick up" blocks from Little Logistics. +- Fixed a bug with Canary and Little Logistics + # 1.0.16 ## Config Changes diff --git a/config/canary.properties b/config/canary.properties new file mode 100644 index 0000000..d957302 --- /dev/null +++ b/config/canary.properties @@ -0,0 +1,10 @@ +# This is the configuration file for Canary. +# This file exists for debugging purposes and should not be configured otherwise. +# Before configuring anything, take a backup of the worlds that will be opened. +# +# You can find information on editing this file and all the available options here: +# https://github.com/AbdElAziz333/Canary/wiki/Configuration-File +# +# By default, this file will be empty except for this notice. + +mixin.block.hopper = false \ No newline at end of file diff --git a/config/carryon-common.toml b/config/carryon-common.toml new file mode 100644 index 0000000..66245a2 --- /dev/null +++ b/config/carryon-common.toml @@ -0,0 +1,79 @@ + +[settings] + #General Settings + #Maximum distance from where Blocks and Entities can be picked up + #Range: 0.0 ~ 1.7976931348623157E308 + maxDistance = 2.5 + #Max width of entities that can be picked up in survival mode + #Range: 0.0 ~ 10.0 + maxEntityWidth = 1.5 + #Max height of entities that can be picked up in survival mode + #Range: 0.0 ~ 10.0 + maxEntityHeight = 2.5 + #Slowness multiplier for blocks + #Range: 0.0 ~ 1.7976931348623157E308 + blockSlownessMultiplier = 1.0 + #Slowness multiplier for entities + #Range: 0.0 ~ 1.7976931348623157E308 + entitySlownessMultiplier = 1.0 + #Maximum stack limit for entities + #Range: > 1 + maxEntityStackLimit = 10 + #More complex Tile Entities slow down the player more + heavyTiles = true + #Allow all blocks to be picked up, not just Tile Entites. White/Blacklist will still be respected. + pickupAllBlocks = false + #Whether Blocks and Entities slow the creative player down when carried + slownessInCreative = true + #Whether hostile mobs should be able to picked up in survival mode + pickupHostileMobs = false + #Larger Entities slow down the player more + heavyEntities = true + #Allow babies to be carried even when adult mob is blacklisted (or not whitelisted) + allowBabies = false + #Use Whitelist instead of Blacklist for Blocks + useWhitelistBlocks = false + #Use Whitelist instead of Blacklist for Entities + useWhitelistEntities = false + #Use Whitelist instead of Blacklist for Stacking + useWhitelistStacking = false + #Whether the player can hit blocks and entities while carrying or not + hitWhileCarrying = false + #Whether the player drops the carried object when hit or not + dropCarriedWhenHit = false + #Use custom Pickup Scripts. Having this set to false, will not allow you to run scripts, but will increase your performance + useScripts = false + #Allows entities to be stacked on top of each other + stackableEntities = true + #Whether entities' size matters when stacking or not. This means that larger entities cannot be stacked on smaller ones + entitySizeMattersStacking = true + #Usually all the block state information is retained when placing a block that was picked up. But some information is changed to a modified property, like rotation or orientation. In this list, add additional properties that should NOT be saved and instead be updated when placed. Format: modid:block[propertyname]. Note: You don't need to add an entry for every subtype of a same block. For example, we only add an entry for one type of slab, but the change is applied to all slabs. + placementStateExceptions = ["minecraft:chest[type]", "minecraft:stone_button[face]", "minecraft:vine[north,east,south,west,up]", "minecraft:creeper_head[rotation]", "minecraft:glow_lichen[north,east,south,west,up,down]", "minecraft:oak_sign[rotation]", "minecraft:oak_trapdoor[half]"] + #Whether Players can be picked up. Creative players can't be picked up in Survival Mode + pickupPlayers = true + +[whitelist] + #Whitelist. Read about the format here: https://github.com/Tschipp/CarryOn/wiki/Black---and-Whitelist-Config + #Entities that CAN be picked up (useWhitelistEntities must be true) + allowedEntities = [] + #Blocks that CAN be picked up (useWhitelistBlocks must be true) + allowedBlocks = [] + #Entities that CAN have other entities stacked on top of them (useWhitelistStacking must be true) + allowedStacking = [] + +[blacklist] + #Blacklist. Read about the format here: https://github.com/Tschipp/CarryOn/wiki/Black---and-Whitelist-Config + #Blocks that cannot be picked up + forbiddenTiles = ["#forge:immovable", "#forge:relocation_not_supported", "minecraft:end_portal", "minecraft:piston_head", "minecraft:end_gateway", "minecraft:tall_grass", "minecraft:large_fern", "minecraft:peony", "minecraft:rose_bush", "minecraft:lilac", "minecraft:sunflower", "minecraft:*_bed", "minecraft:*_door", "minecraft:big_dripleaf_stem", "minecraft:waterlily", "minecraft:cake", "minecraft:nether_portal", "minecraft:tall_seagrass", "animania:block_trough", "animania:block_invisiblock", "colossalchests:*", "ic2:*", "bigreactors:*", "forestry:*", "tconstruct:*", "rustic:*", "botania:*", "astralsorcery:*", "quark:colored_bed_*", "immersiveengineering:*", "embers:block_furnace", "embers:ember_bore", "embers:ember_activator", "embers:mixer", "embers:heat_coil", "embers:large_tank", "embers:crystal_cell", "embers:alchemy_pedestal", "embers:boiler", "embers:combustor", "embers:catalzyer", "embers:field_chart", "embers:inferno_forge", "storagedrawers:framingtable", "skyresources:*", "lootbags:*", "exsartagine:*", "aquamunda:tank", "opencomputers:*", "malisisdoors:*", "industrialforegoing:*", "minecolonies:*", "thaumcraft:pillar*", "thaumcraft:infernal_furnace", "thaumcraft:placeholder*", "thaumcraft:infusion_matrix", "thaumcraft:golem_builder", "thaumcraft:thaumatorium*", "magneticraft:oil_heater", "magneticraft:solar_panel", "magneticraft:steam_engine", "magneticraft:shelving_unit", "magneticraft:grinder", "magneticraft:sieve", "magneticraft:solar_tower", "magneticraft:solar_mirror", "magneticraft:container", "magneticraft:pumpjack", "magneticraft:solar_panel", "magneticraft:refinery", "magneticraft:oil_heater", "magneticraft:hydraulic_press", "magneticraft:multiblock_gap", "refinedstorage:*", "mcmultipart:*", "enderstorage:*", "betterstorage:*", "practicallogistics2:*", "wearablebackpacks:*", "rftools:screen", "rftools:creative_screen", "create:*", "magic_doorknob:*", "iceandfire:*", "ftbquests:*", "waystones:*", "contact:*", "framedblocks:*", "littlelogistics:*"] + #Entities that cannot be picked up + forbiddenEntities = ["minecraft:end_crystal", "minecraft:ender_dragon", "minecraft:ghast", "minecraft:shulker", "minecraft:leash_knot", "minecraft:armor_stand", "minecraft:item_frame", "minecraft:painting", "minecraft:shulker_bullet", "animania:hamster", "animania:ferret*", "animania:hedgehog*", "animania:cart", "animania:wagon", "mynko:*", "pixelmon:*", "mocreatures:*", "quark:totem", "vehicle:*"] + #Entities that cannot have other entities stacked on top of them + forbiddenStacking = ["minecraft:horse"] + +[customPickupConditions] + #Custom Pickup Conditions. Read about the format here: https://github.com/Tschipp/CarryOn/wiki/Custom-Pickup-Condition-Config + #Custom Pickup Conditions for Blocks + customPickupConditionsBlocks = [] + #Custom Pickup Conditions for Entities + customPickupConditionsEntities = [] + diff --git a/kubejs/server_scripts/balance.js b/kubejs/server_scripts/balance.js new file mode 100644 index 0000000..dcacfcb --- /dev/null +++ b/kubejs/server_scripts/balance.js @@ -0,0 +1,28 @@ +// priority 2 + +// Attempting to balance our modpack by adding/removing or altering recipes + +ServerEvents.recipes((event) => { + // Removing recipes that are being rebalanced + event.remove({ id: "rftoolsbuilder:shape_card_quarry" }); + event.remove({ id: "mekanism:digital_miner" }); + + // RFTools Builder Quarry Card + event.shaped("rftoolsbuilder:shape_card_quarry", ["DPD", "ICI", "DSD"], { + D: "redstone_arsenal:flux_dust", + P: "redstone_arsenal:flux_pickaxe", + I: "redstone_arsenal:flux_plating", + C: "rftoolsbuilder:shape_card_def", + S: "redstone_arsenal:flux_shovel", + }); + + // Mekanism Digital Miner + event.shaped("mekanism:digital_miner", ["ACA", "SRS", "ETE"], { + A: "mekanism:alloy_atomic", + C: "mekanism:elite_control_circuit", + S: "mekanism:logistical_sorter", + R: "mekanism:advanced_control_circuit", + E: "minecraft:ender_pearl", + T: "mekanism:steel_casing", + }); +}); From 4a2fb6b44f2756dfdbcda279ad93a1a5cd98b77c Mon Sep 17 00:00:00 2001 From: Thomas Hinkle Date: Tue, 25 Apr 2023 21:04:08 -0500 Subject: [PATCH 04/36] Forgot to update version number and refresh lol --- index.toml | 16 ++++++++++++++++ pack.toml | 4 ++-- 2 files changed, 18 insertions(+), 2 deletions(-) diff --git a/index.toml b/index.toml index 0228b04..411bd0d 100644 --- a/index.toml +++ b/index.toml @@ -16,6 +16,14 @@ hash = "efeedd71425606e55f2c16be71d0d325607045d3e914f886b0b57ed09b65413a" file = "config/bno-common.toml" hash = "418f8824835fa1e3490b26fcf43cb16d8bfb653a17a2a61b0854a7c18a0f5546" +[[files]] +file = "config/canary.properties" +hash = "e048897ad0aa8aedeff3073b0246082b4b502e29115555ab773402e97efc8c28" + +[[files]] +file = "config/carryon-common.toml" +hash = "fc58bc1b3690259bda273aa79cf96d45a1d01cb3b19b71eb168472ba6243de50" + [[files]] file = "config/enhancedvisuals-client.json" hash = "ad170bba4bca8888f6484cda3153e1a9cdc9c5be81f2ca98c902962d1d606f96" @@ -48,6 +56,10 @@ hash = "4e970e910fa0c82e856e5318780d38d9d7ea5dd578dbb7237412017d8b02dd80" file = "config/ftbbackups2.json" hash = "1a3f52aff8fe11c035d5309049a3aa985c49039463ba1b62368407a30a250a90" +[[files]] +file = "config/moremekanismprocessing-common.toml" +hash = "f4f94b6b9dcbbf19a828c842217306169bcff7f9570b81af612b5404bc4bda87" + [[files]] file = "config/starterkit/starterkit.txt" hash = "f3276e9fcaeaf7722b50e3fe50c7729300e051e44a542aff7b554581fd95a704" @@ -80,6 +92,10 @@ hash = "00fd68c7cebeb9d6f09da20fed39c0bdd8e608ed6afaee9f6ef048208f50e86e" file = "kubejs/client_scripts/hide.js" hash = "46555dc2fd7e829686eaf0b24b33a09675bc6d0f1d994a19ab9004d8d6cf0b99" +[[files]] +file = "kubejs/server_scripts/balance.js" +hash = "84d823bde19f065e4f25d4d57140133ca73ad5ce140283d86998e0175364cb35" + [[files]] file = "kubejs/server_scripts/banned.js" hash = "6b956902beb69b0abe652b87a12fc49cd260b10ea2568a9fed6378cdf8bd5d87" diff --git a/pack.toml b/pack.toml index 9517e7d..513365a 100644 --- a/pack.toml +++ b/pack.toml @@ -1,12 +1,12 @@ name = "ScrumptiousCraft Um" author = "razage" -version = "1.0.16" +version = "1.0.17" pack-format = "packwiz:1.1.0" [index] file = "index.toml" hash-format = "sha256" -hash = "61cea5fc6e6d6770287ca74b0323154d268dc118cd597962c1cb7c9855b1598f" +hash = "71451e60cbaf7d2f4f5deae4e8a089915d100c83c2dc261562116e63656eca0b" [versions] forge = "43.2.8" From f5d405af88a50a3fb435e4db8b704235dc1b1831 Mon Sep 17 00:00:00 2001 From: Thomas Hinkle Date: Wed, 26 Apr 2023 00:36:03 -0500 Subject: [PATCH 05/36] Added a fancy map mod for posterity. --- CHANGELOG.md | 21 ++++++++++++++++++++- config/starterkit/starterkit.txt | 2 +- defaultconfigs/gravestone-server.toml | 2 +- index.toml | 21 ++++++++++++++++++--- mods/bluemap.pw.toml | 13 +++++++++++++ mods/maintenancemode.pw.toml | 13 +++++++++++++ mods/observable.pw.toml | 3 +++ mods/spawn-animations.pw.toml | 13 +++++++++++++ pack.toml | 4 ++-- 9 files changed, 84 insertions(+), 8 deletions(-) create mode 100644 mods/bluemap.pw.toml create mode 100644 mods/maintenancemode.pw.toml create mode 100644 mods/spawn-animations.pw.toml diff --git a/CHANGELOG.md b/CHANGELOG.md index 623d245..3e26363 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,22 @@ +# 1.0.18 + +## Config Changes + +- Made the Observable mod optional, since only admins need it. +- Added a bed to the starter kit. +- Disabled the ghost that spawns when a gravestone is broken. It doesn't do anything anyway. + +## Mods + +### Additions + +- Blue Map + - A fancy server tool to generate a 3D map of our world that can be viewed online. +- Maintenance Mode + - A tool for allowing certain players on during "maintenance". +- Spawn Animations + - Adds some animations for when mobs spawn. + # 1.0.17 ## Config Changes @@ -5,7 +24,7 @@ - Made the recipe for RFTool's Quarry Card much more expensive. - Lowered the cost of Mekanism's Digital Miner. - Disabled the ability to "pick up" blocks from Little Logistics. -- Fixed a bug with Canary and Little Logistics +- Fixed a bug with Canary and Little Logistics. # 1.0.16 diff --git a/config/starterkit/starterkit.txt b/config/starterkit/starterkit.txt index dd6e7ec..4d06a7d 100644 --- a/config/starterkit/starterkit.txt +++ b/config/starterkit/starterkit.txt @@ -6,7 +6,7 @@ 0 : '{Count:1b,id:"minecraft:wooden_pickaxe",tag:{Damage:0}}', 1 : '{Count:1b,id:"cgm:pistol",tag:{AmmoCount:16}}', 2 : '{Count:1b,id:"minecraft:wooden_axe",tag:{Damage:0}}', -3 : '', +3 : '{Count:1b,id:"minecraft:white_bed"}', 4 : '{Count:1b,id:"solsweetpotato:food_book"}', 5 : '{Count:2b,id:"simpleshops:simple_shop"}', 6 : '{Count:1b,id:"thermal:satchel",tag:{ItemInv:{ItemInv:[{Count:20b,Slot:0b,id:"thermal:bronze_coin"}]},RepairCost:0,display:{Name:'{"text":"Wallet"}'}}}', diff --git a/defaultconfigs/gravestone-server.toml b/defaultconfigs/gravestone-server.toml index ca139f3..db6c1fd 100644 --- a/defaultconfigs/gravestone-server.toml +++ b/defaultconfigs/gravestone-server.toml @@ -8,7 +8,7 @@ remove_obituary = true #If this is set to true only the player that owns the grave and admins can break the grave only_owners_can_break = false #If this is set to true the ghost of the dead player will be spawned when the grave is broken -spawn_ghost = true +spawn_ghost = false #If this is set to true the ghost player will defend the player friendly_ghost = true #If this is set to true you get your items back into your inventory by sneaking on the grave diff --git a/index.toml b/index.toml index 411bd0d..eee0e45 100644 --- a/index.toml +++ b/index.toml @@ -62,7 +62,7 @@ hash = "f4f94b6b9dcbbf19a828c842217306169bcff7f9570b81af612b5404bc4bda87" [[files]] file = "config/starterkit/starterkit.txt" -hash = "f3276e9fcaeaf7722b50e3fe50c7729300e051e44a542aff7b554581fd95a704" +hash = "0e6995365cc48051831383a83f465cf340b75d00d7601b236fadd4d7abc8d035" [[files]] file = "config/toastcontrol-common.toml" @@ -82,7 +82,7 @@ hash = "09e2485d7813ba56d55a5aefa339cd6bfafff9ca6aed41b04bb550d3d57a3ac2" [[files]] file = "defaultconfigs/gravestone-server.toml" -hash = "2adb6b444fe511cfe32878a7e55199aa563f6051425c382d97f14184d36ab268" +hash = "b5522b1e110d95eedb754c67041969140192972ba7190c1182a61a469eaea1e0" [[files]] file = "defaultconfigs/rftoolsbuilder-server.toml" @@ -194,6 +194,11 @@ file = "mods/better-compatibility-checker.pw.toml" hash = "d6e632815eec579cf9763057f706a5a4eae2dd9237601e63b4c32bc57ac90338" metafile = true +[[files]] +file = "mods/bluemap.pw.toml" +hash = "d16a8e25f8ca3aecbbe8e4b50de352b9a447a3b0e246a0a4bfff74301cf97fbf" +metafile = true + [[files]] file = "mods/bookshelf.pw.toml" hash = "9c6f89d65804f3f09d774105c6a9afda57c949f7c0610689eb9c09de8cc3f1b8" @@ -674,6 +679,11 @@ file = "mods/macaws-windows.pw.toml" hash = "0a7edf681664e37cbaa592b4f4260d6ba80268f46084b8d99069aa9c264f5b70" metafile = true +[[files]] +file = "mods/maintenancemode.pw.toml" +hash = "4ac2f64b8b6579ddf48f1301bfec97eda328217ded3031d2cce56d584adb2745" +metafile = true + [[files]] file = "mods/mcjtylib.pw.toml" hash = "5da4f927ed15f0cb187a5fc90af5ba7772e257521cc9537d095bc2287a44de09" @@ -776,7 +786,7 @@ metafile = true [[files]] file = "mods/observable.pw.toml" -hash = "7bc26cb7026d2ad04304e3802cbdd274be75c646cdccbdb469a5ed7d63f25547" +hash = "a9b531535c2d136f62ec6157782dbedf858a9f71091ffad84da1a37664384922" metafile = true [[files]] @@ -1029,6 +1039,11 @@ file = "mods/sound-physics-remastered.pw.toml" hash = "f2911639cfd58f1f44df7835493555a5aea7a729413f1c5f6dae744136d4c782" metafile = true +[[files]] +file = "mods/spawn-animations.pw.toml" +hash = "b4b8e10d243bf3b0c5a3e2346141adae563bc70156fdd111a27cf1de827c24be" +metafile = true + [[files]] file = "mods/spice-of-life-sweet-potato-edition.pw.toml" hash = "b8570c5763eeb3f8c004203368df4c53cbcac6f855c48b92e62ce3d44ae7e6bb" diff --git a/mods/bluemap.pw.toml b/mods/bluemap.pw.toml new file mode 100644 index 0000000..5790a7b --- /dev/null +++ b/mods/bluemap.pw.toml @@ -0,0 +1,13 @@ +name = "BlueMap" +filename = "BlueMap-3.13-forge-1.19.1.jar" +side = "server" + +[download] +url = "https://cdn.modrinth.com/data/swbUV1cr/versions/guHqbtbc/BlueMap-3.13-forge-1.19.1.jar" +hash-format = "sha1" +hash = "e52149deab9dbaa3da499624c9bac300f5b88561" + +[update] +[update.modrinth] +mod-id = "swbUV1cr" +version = "guHqbtbc" diff --git a/mods/maintenancemode.pw.toml b/mods/maintenancemode.pw.toml new file mode 100644 index 0000000..7a7f168 --- /dev/null +++ b/mods/maintenancemode.pw.toml @@ -0,0 +1,13 @@ +name = "Maintenance Mode" +filename = "mmode-forge-1.19-1.1.1d.jar" +side = "server" + +[download] +url = "https://cdn.modrinth.com/data/QOkEkSap/versions/9ywi0cUJ/mmode-forge-1.19-1.1.1d.jar" +hash-format = "sha1" +hash = "5ee03d6fe8e8ec6c32f64cd115a4efae641254f6" + +[update] +[update.modrinth] +mod-id = "QOkEkSap" +version = "9ywi0cUJ" diff --git a/mods/observable.pw.toml b/mods/observable.pw.toml index f101ac1..0e32178 100644 --- a/mods/observable.pw.toml +++ b/mods/observable.pw.toml @@ -7,6 +7,9 @@ hash-format = "sha1" hash = "83cbc1e8220231b645ac14578f1a2a85fa15fe29" mode = "metadata:curseforge" +[option] +optional = true + [update] [update.curseforge] file-id = 4193014 diff --git a/mods/spawn-animations.pw.toml b/mods/spawn-animations.pw.toml new file mode 100644 index 0000000..aadaf6a --- /dev/null +++ b/mods/spawn-animations.pw.toml @@ -0,0 +1,13 @@ +name = "Spawn Animations" +filename = "spawn-animations-1.8.2.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/zrzYrlm0/versions/2jV4945M/spawn-animations-1.8.2.jar" +hash-format = "sha1" +hash = "3dabc3801fd42b75331fa14f38fdb94a68262e05" + +[update] +[update.modrinth] +mod-id = "zrzYrlm0" +version = "2jV4945M" diff --git a/pack.toml b/pack.toml index 513365a..5e71c46 100644 --- a/pack.toml +++ b/pack.toml @@ -1,12 +1,12 @@ name = "ScrumptiousCraft Um" author = "razage" -version = "1.0.17" +version = "1.0.18" pack-format = "packwiz:1.1.0" [index] file = "index.toml" hash-format = "sha256" -hash = "71451e60cbaf7d2f4f5deae4e8a089915d100c83c2dc261562116e63656eca0b" +hash = "9c1a7c4305f06f03b197945271874c4ec5478ea1e99f207c010ca68fb017e18e" [versions] forge = "43.2.8" From a8e7aff0b42f1ed17e21c741e4497b70bde1ca46 Mon Sep 17 00:00:00 2001 From: Thomas Hinkle Date: Wed, 26 Apr 2023 00:37:39 -0500 Subject: [PATCH 06/36] oops lol --- index.toml | 2 +- pack.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/index.toml b/index.toml index eee0e45..b6fc732 100644 --- a/index.toml +++ b/index.toml @@ -62,7 +62,7 @@ hash = "f4f94b6b9dcbbf19a828c842217306169bcff7f9570b81af612b5404bc4bda87" [[files]] file = "config/starterkit/starterkit.txt" -hash = "0e6995365cc48051831383a83f465cf340b75d00d7601b236fadd4d7abc8d035" +hash = "076347ab8b98ea4440f649563e48f204e7f6f886b7ecc9814576b2fae3a70092" [[files]] file = "config/toastcontrol-common.toml" diff --git a/pack.toml b/pack.toml index 5e71c46..27a7928 100644 --- a/pack.toml +++ b/pack.toml @@ -6,7 +6,7 @@ pack-format = "packwiz:1.1.0" [index] file = "index.toml" hash-format = "sha256" -hash = "9c1a7c4305f06f03b197945271874c4ec5478ea1e99f207c010ca68fb017e18e" +hash = "701ea38cc4752a54c4d98807b9b7d988108209e638002c532bda6099d8433c50" [versions] forge = "43.2.8" From e19c29d1dd1fae07c1602cc6429d34512a75a7fc Mon Sep 17 00:00:00 2001 From: Thomas Hinkle Date: Wed, 26 Apr 2023 16:08:26 -0500 Subject: [PATCH 07/36] Dramatically changed worldgen --- CHANGELOG.md | 32 ++++++++++++++ .../fancymenu/customization/um-mainmenu.txt | 2 +- config/mmode.json | 21 ++++++++++ index.toml | 42 +++++++++++++++---- mods/carry-on.pw.toml | 13 ------ mods/connectivity.pw.toml | 6 +-- mods/full-grown-crop-marker.pw.toml | 16 +++++++ mods/libipn.pw.toml | 6 +-- mods/river-redux.pw.toml | 13 ++++++ mods/storage-drawers.pw.toml | 6 +-- mods/tectonic.pw.toml | 13 ++++++ mods/terralith.pw.toml | 13 ++++++ mods/tiny-coal.pw.toml | 13 ++++++ pack.toml | 4 +- 14 files changed, 166 insertions(+), 34 deletions(-) create mode 100644 config/mmode.json delete mode 100644 mods/carry-on.pw.toml create mode 100644 mods/full-grown-crop-marker.pw.toml create mode 100644 mods/river-redux.pw.toml create mode 100644 mods/tectonic.pw.toml create mode 100644 mods/terralith.pw.toml create mode 100644 mods/tiny-coal.pw.toml diff --git a/CHANGELOG.md b/CHANGELOG.md index 3e26363..b9a1437 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,35 @@ +# 1.0.19 + +## Config Changes + +- Added the modpack's _actual_ version number to the menu screen. + +## Mods + +## Removals + +- Carry On + - While I appreciate this mod, it is causing too many compatibility issues. + +### Additions + +- Full Grown Crop Marker + - An optional mod that adds indicators over crops as they grow. +- River Redux +- Tectonic +- Terralith + - These mods alter world generation to make more "interesting" features. +- Tiny Coal + - Adds tiny coal, which can be used for a single furnace operation. It helps you not waste coal/charcoal. + +## Updates + +- Carry On 2.0.5.10 -> 2.0.5.11 +- Connectivity 3.4 -> 3.5 +- libIPN 2.0.5 -> 2.0.6 +- Storage Drawers 11.1.3 -> 11.1.2 + - I'm not sure why this is an update. It looks like it's moving from a specific 1.19.2 version to a 1.19.x version. Hopefully nothing breaks. + # 1.0.18 ## Config Changes diff --git a/config/fancymenu/customization/um-mainmenu.txt b/config/fancymenu/customization/um-mainmenu.txt index b2f79d5..66f5a0c 100755 --- a/config/fancymenu/customization/um-mainmenu.txt +++ b/config/fancymenu/customization/um-mainmenu.txt @@ -256,7 +256,7 @@ customization { enable_scrolling = true shadow = true scale = 1.0 - source = ScrumptiousCraft Um (alpha 1)%n%Pack assembled by Raz%n%{"placeholder":"playeruuid"} + source = ScrumptiousCraft Um 1.0.19%n%Pack assembled by Raz%n%{"placeholder":"playeruuid"} text_border = 0 case_mode = normal source_mode = direct diff --git a/config/mmode.json b/config/mmode.json new file mode 100644 index 0000000..ea2d31d --- /dev/null +++ b/config/mmode.json @@ -0,0 +1,21 @@ +{ + "enabled": false, + "doBackup": false, + "message": "This server is currently in maintenance mode! Please check back later", + "motd": "This server is currently undergoing maintenance!", + "maintenanceIcon": "server-icon.png", + "allowedUsers": [ + { + "uuid": "fe2c9fee-832d-4b82-84fd-ef24ae1a94e9", + "name": "crazybmanp" + }, + { + "uuid": "9e2f9630-deca-4406-aa6a-83f318b77b50", + "name": "razage" + }, + { + "uuid": "5be06dd8-99af-4822-8be0-ad50d44e9fae", + "name": "DrOfAwesomeness" + } + ] +} diff --git a/index.toml b/index.toml index b6fc732..08a4be7 100644 --- a/index.toml +++ b/index.toml @@ -42,7 +42,7 @@ hash = "4d1b1fb5cb5441c0579e67c0159a14a0ec0c393db1e378ec81efdb946e964c0a" [[files]] file = "config/fancymenu/customization/um-mainmenu.txt" -hash = "3f14f61c9e6d6da763dd2a17f90b53488f4518e4089a67ef4ffc7584d4df122b" +hash = "b10b59fd35628862c330bfd8f0340b98114d75b6d95f8b354c6772cf43311f0c" [[files]] file = "config/fancymenu/customization/um-multiplayer-menu.txt" @@ -56,6 +56,10 @@ hash = "4e970e910fa0c82e856e5318780d38d9d7ea5dd578dbb7237412017d8b02dd80" file = "config/ftbbackups2.json" hash = "1a3f52aff8fe11c035d5309049a3aa985c49039463ba1b62368407a30a250a90" +[[files]] +file = "config/mmode.json" +hash = "d98a950b91ff51ef3ac2b3c73a7ea48eb30ec56dd42668a1891f8dffbc690ab5" + [[files]] file = "config/moremekanismprocessing-common.toml" hash = "f4f94b6b9dcbbf19a828c842217306169bcff7f9570b81af612b5404bc4bda87" @@ -224,11 +228,6 @@ file = "mods/canary.pw.toml" hash = "58f75414da63386b16498d447ebd9c0074e72df9e8a667f075577e1813e5d31e" metafile = true -[[files]] -file = "mods/carry-on.pw.toml" -hash = "f5e53e1ee927a32d67419fbd48d2d12668d982631a68b3a5ee60292a812dda54" -metafile = true - [[files]] file = "mods/cc-tweaked.pw.toml" hash = "9a0923ead8905649bc1260301508dc349ec7dd134fd8278a67e144d1f3ed68df" @@ -281,7 +280,7 @@ metafile = true [[files]] file = "mods/connectivity.pw.toml" -hash = "1400f0a5f428367609794c7fe3fb825163cbb6bf5b6715dff5fbfe5f02c078d2" +hash = "8900e9342e97cfd19abe1516be3743658eeb16a86bd54a92843bb27d24a862ec" metafile = true [[files]] @@ -489,6 +488,11 @@ file = "mods/ftb-teams-forge.pw.toml" hash = "f2f347366b136eec0278baa68557247a4e5c793867daa31e7810ae7bc26921aa" metafile = true +[[files]] +file = "mods/full-grown-crop-marker.pw.toml" +hash = "915672f0c066fb2601b551dad8bdf349f7d5352388833c8cc6adc4e790b4366e" +metafile = true + [[files]] file = "mods/geckolib.pw.toml" hash = "ab7bb11199e592a43542ec0ca68c0536b91b5045e070a77525ae1593ca722b90" @@ -601,7 +605,7 @@ metafile = true [[files]] file = "mods/libipn.pw.toml" -hash = "640e54f2e4f67bb03d0464b6705a0c3c8009a8215571c2970210426f78ab0e3b" +hash = "580f7477d0e7a0d5e1542afa3326e034e427821a98191396c56e089604a9b4dc" metafile = true [[files]] @@ -954,6 +958,11 @@ file = "mods/right-click-get-crops.pw.toml" hash = "78e046227b585a55f916b1e25a0d28287a781665169cb2905f9bfc5f54fe8f50" metafile = true +[[files]] +file = "mods/river-redux.pw.toml" +hash = "94ad9e8e1584a6d0196c00ff1bfc6044e1558bc28794a938eef2d008599eb686" +metafile = true + [[files]] file = "mods/rotten-creatures.pw.toml" hash = "3dd7e9906c670fc3380094f3273d702fdbdad02ffa35ffaf2e8c5bd4ce3de2a3" @@ -1056,7 +1065,7 @@ metafile = true [[files]] file = "mods/storage-drawers.pw.toml" -hash = "de8164b6041e2eb78a5fa5d085415def08f03277311818220ed01181736543b2" +hash = "11332954f108106789ad818138a9b6ee0dd169a92b8763ae35d2d9ce88815c23" metafile = true [[files]] @@ -1079,11 +1088,21 @@ file = "mods/swingthroughgrass.pw.toml" hash = "ca83d6d210d1d289fc8999c481a778a3edcf4228c9de3d280cfd86012868e30f" metafile = true +[[files]] +file = "mods/tectonic.pw.toml" +hash = "c3031ad83db2a8dfbab15105f5260018a1d789c7cef90c24d1ff4d5f7359026e" +metafile = true + [[files]] file = "mods/terrablender.pw.toml" hash = "64036b0bc617a33d904a0e6371ddc7d63896a888b1e0ada1a6eae8f647bb9327" metafile = true +[[files]] +file = "mods/terralith.pw.toml" +hash = "7d8109543303c680aa1d4d5d4e81548ec602f910ca2e9a32133a07c0dc3c2df7" +metafile = true + [[files]] file = "mods/thermal-cultivation.pw.toml" hash = "f66d3443df1b1d2619234a4e81851ff80c1821eb911307fcbaf52bbdbcfeafe3" @@ -1119,6 +1138,11 @@ file = "mods/thermal-locomotion.pw.toml" hash = "adee82b263934908f09fda840fc8d1578437e6cdabc75cfaba060d44d7d2dcd3" metafile = true +[[files]] +file = "mods/tiny-coal.pw.toml" +hash = "885305ce6397e1503749370ad7faf7a9d94d2bf4fcc2466f89a2b42b9805abe8" +metafile = true + [[files]] file = "mods/titanium.pw.toml" hash = "0d59965134e837bc8d4c3a8b43788b493317070cc00f61de7beef0764981857a" diff --git a/mods/carry-on.pw.toml b/mods/carry-on.pw.toml deleted file mode 100644 index 2d673d8..0000000 --- a/mods/carry-on.pw.toml +++ /dev/null @@ -1,13 +0,0 @@ -name = "Carry On" -filename = "carryon-forge-1.19.2-2.0.5.10.jar" -side = "both" - -[download] -hash-format = "sha1" -hash = "a31b5f5c1837ae71f9c3917b67c3ae9b383c1cc9" -mode = "metadata:curseforge" - -[update] -[update.curseforge] -file-id = 4375891 -project-id = 274259 diff --git a/mods/connectivity.pw.toml b/mods/connectivity.pw.toml index f8be51f..fa08557 100644 --- a/mods/connectivity.pw.toml +++ b/mods/connectivity.pw.toml @@ -1,13 +1,13 @@ name = "Connectivity[Forge/Fabric]" -filename = "connectivity-1.19.2-3.4.jar" +filename = "connectivity-1.19.2-3.5.jar" side = "both" [download] hash-format = "sha1" -hash = "13921efde7ddd6d567662e9df2bae689df3cefb4" +hash = "d126fb0e1c21bb27c10b5929d4881f3653b31c0f" mode = "metadata:curseforge" [update] [update.curseforge] -file-id = 4066426 +file-id = 4508264 project-id = 470193 diff --git a/mods/full-grown-crop-marker.pw.toml b/mods/full-grown-crop-marker.pw.toml new file mode 100644 index 0000000..a98ce0f --- /dev/null +++ b/mods/full-grown-crop-marker.pw.toml @@ -0,0 +1,16 @@ +name = "FullGrownCropMarker" +filename = "crop-marker-forge-1.19-1.2.0.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/zB8NzHon/versions/d74oQWGN/crop-marker-forge-1.19-1.2.0.jar" +hash-format = "sha1" +hash = "6d23e75082bdbac8a74120a3bfd3b1d91ea8d7b3" + +[option] +optional = true + +[update] +[update.modrinth] +mod-id = "zB8NzHon" +version = "d74oQWGN" diff --git a/mods/libipn.pw.toml b/mods/libipn.pw.toml index ee4902a..4540a12 100644 --- a/mods/libipn.pw.toml +++ b/mods/libipn.pw.toml @@ -1,13 +1,13 @@ name = "libIPN" -filename = "libIPN-forge-1.19-2.0.5.jar" +filename = "libIPN-forge-1.19-2.0.6.jar" side = "both" [download] hash-format = "sha1" -hash = "2a64e92c43446629b2cce2e7f987a256b05aaee1" +hash = "388106d82e5de1294f4acb8f2ef62f03cb68be39" mode = "metadata:curseforge" [update] [update.curseforge] -file-id = 4501596 +file-id = 4506676 project-id = 679177 diff --git a/mods/river-redux.pw.toml b/mods/river-redux.pw.toml new file mode 100644 index 0000000..9e89d92 --- /dev/null +++ b/mods/river-redux.pw.toml @@ -0,0 +1,13 @@ +name = "River Redux" +filename = "riverredux-0.3.0+forge.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/dhhdnacC/versions/gqb47kPv/riverredux-0.3.0%2Bforge.jar" +hash-format = "sha1" +hash = "a2caf20c7a1ea472fd83e06b3689e8bda223341d" + +[update] +[update.modrinth] +mod-id = "dhhdnacC" +version = "gqb47kPv" diff --git a/mods/storage-drawers.pw.toml b/mods/storage-drawers.pw.toml index 47762a8..d1940a6 100644 --- a/mods/storage-drawers.pw.toml +++ b/mods/storage-drawers.pw.toml @@ -1,13 +1,13 @@ name = "Storage Drawers" -filename = "StorageDrawers-1.19.2-11.1.3.jar" +filename = "StorageDrawers-1.19-11.1.2.jar" side = "both" [download] hash-format = "sha1" -hash = "24647ae23efb5da6f2a17ed632e18e2bd8ed6804" +hash = "afe617926602371af9461c549a8b1378872843d9" mode = "metadata:curseforge" [update] [update.curseforge] -file-id = 4501490 +file-id = 3884263 project-id = 223852 diff --git a/mods/tectonic.pw.toml b/mods/tectonic.pw.toml new file mode 100644 index 0000000..e30ca9e --- /dev/null +++ b/mods/tectonic.pw.toml @@ -0,0 +1,13 @@ +name = "Tectonic" +filename = "tectonic-mod-mc1.19.2-v1.1.9b.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/lWDHr9jE/versions/65V8fhDb/tectonic-mod-mc1.19.2-v1.1.9b.jar" +hash-format = "sha1" +hash = "e10e29815930cfa3c6db31c940e8aebde37d6950" + +[update] +[update.modrinth] +mod-id = "lWDHr9jE" +version = "65V8fhDb" diff --git a/mods/terralith.pw.toml b/mods/terralith.pw.toml new file mode 100644 index 0000000..33f0eb0 --- /dev/null +++ b/mods/terralith.pw.toml @@ -0,0 +1,13 @@ +name = "Terralith" +filename = "Terralith_1.19.3_v2.3.7b.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/8oi3bsk5/versions/1latp88m/Terralith_1.19.3_v2.3.7b.jar" +hash-format = "sha1" +hash = "d886da3705ad6ffca075d9b60ae2267c61f15d32" + +[update] +[update.modrinth] +mod-id = "8oi3bsk5" +version = "1latp88m" diff --git a/mods/tiny-coal.pw.toml b/mods/tiny-coal.pw.toml new file mode 100644 index 0000000..995feea --- /dev/null +++ b/mods/tiny-coal.pw.toml @@ -0,0 +1,13 @@ +name = "Tiny Coal" +filename = "Tiny-Coal-Forge-1.19.2-1.0.1.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/6Ezzuwck/versions/huCEMAXo/Tiny-Coal-Forge-1.19.2-1.0.1.jar" +hash-format = "sha1" +hash = "77afdc398c9710f36a447cb9ab57a16214f465cf" + +[update] +[update.modrinth] +mod-id = "6Ezzuwck" +version = "huCEMAXo" diff --git a/pack.toml b/pack.toml index 27a7928..01f54c7 100644 --- a/pack.toml +++ b/pack.toml @@ -1,12 +1,12 @@ name = "ScrumptiousCraft Um" author = "razage" -version = "1.0.18" +version = "1.0.19" pack-format = "packwiz:1.1.0" [index] file = "index.toml" hash-format = "sha256" -hash = "701ea38cc4752a54c4d98807b9b7d988108209e638002c532bda6099d8433c50" +hash = "65a6ce7d318d431a6a8da673a74cce14c387f8bbee4a51b97e7671688df0f277" [versions] forge = "43.2.8" From 0bb9a38cc401186eee140b805cf876ddd1083f79 Mon Sep 17 00:00:00 2001 From: Thomas Hinkle Date: Thu, 27 Apr 2023 12:35:13 -0500 Subject: [PATCH 08/36] Found our holy grail economy mod. --- CHANGELOG.md | 28 +++++++ config/carryon-common.toml | 79 ------------------- .../fancymenu/customization/um-mainmenu.txt | 2 +- config/starterkit/starterkit.txt | 2 +- index.toml | 29 +++---- mods/chunky.pw.toml | 13 +++ mods/createaddition.pw.toml | 6 +- mods/fastworkbench.pw.toml | 6 +- mods/seasonhud.pw.toml | 6 +- mods/simple-shops.pw.toml | 13 --- mods/toms-trading-network.pw.toml | 13 +++ pack.toml | 4 +- 12 files changed, 82 insertions(+), 119 deletions(-) delete mode 100644 config/carryon-common.toml create mode 100644 mods/chunky.pw.toml delete mode 100644 mods/simple-shops.pw.toml create mode 100644 mods/toms-trading-network.pw.toml diff --git a/CHANGELOG.md b/CHANGELOG.md index b9a1437..3c0a033 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,31 @@ +# 1.1.0 + +This will be the initial release for the production server. I will avoid adding new "content" from this point on, but config changes and QoL is still on the table. + +## Config Changes + +- Modified the starter kit to include the new shop block instead of the old one. + +## Mods + +### Removals + +- Simple Shops + - It functions fine, but it is out-classed by our new trading mod. + +### Additions + +- Chunky + - Allows OPs to pre-generate chunks. +- Tom's Trading Network + - A better trading mod for a server economy. + +### Updates + +- Create Crafts and Additions 1.19.2-20230411a -> 1.19.2-20230426a +- FastWorkbench 7.1.1 -> 7.1.2 +- SeasonHUD 1.4.12 -> 1.4.13 + # 1.0.19 ## Config Changes diff --git a/config/carryon-common.toml b/config/carryon-common.toml deleted file mode 100644 index 66245a2..0000000 --- a/config/carryon-common.toml +++ /dev/null @@ -1,79 +0,0 @@ - -[settings] - #General Settings - #Maximum distance from where Blocks and Entities can be picked up - #Range: 0.0 ~ 1.7976931348623157E308 - maxDistance = 2.5 - #Max width of entities that can be picked up in survival mode - #Range: 0.0 ~ 10.0 - maxEntityWidth = 1.5 - #Max height of entities that can be picked up in survival mode - #Range: 0.0 ~ 10.0 - maxEntityHeight = 2.5 - #Slowness multiplier for blocks - #Range: 0.0 ~ 1.7976931348623157E308 - blockSlownessMultiplier = 1.0 - #Slowness multiplier for entities - #Range: 0.0 ~ 1.7976931348623157E308 - entitySlownessMultiplier = 1.0 - #Maximum stack limit for entities - #Range: > 1 - maxEntityStackLimit = 10 - #More complex Tile Entities slow down the player more - heavyTiles = true - #Allow all blocks to be picked up, not just Tile Entites. White/Blacklist will still be respected. - pickupAllBlocks = false - #Whether Blocks and Entities slow the creative player down when carried - slownessInCreative = true - #Whether hostile mobs should be able to picked up in survival mode - pickupHostileMobs = false - #Larger Entities slow down the player more - heavyEntities = true - #Allow babies to be carried even when adult mob is blacklisted (or not whitelisted) - allowBabies = false - #Use Whitelist instead of Blacklist for Blocks - useWhitelistBlocks = false - #Use Whitelist instead of Blacklist for Entities - useWhitelistEntities = false - #Use Whitelist instead of Blacklist for Stacking - useWhitelistStacking = false - #Whether the player can hit blocks and entities while carrying or not - hitWhileCarrying = false - #Whether the player drops the carried object when hit or not - dropCarriedWhenHit = false - #Use custom Pickup Scripts. Having this set to false, will not allow you to run scripts, but will increase your performance - useScripts = false - #Allows entities to be stacked on top of each other - stackableEntities = true - #Whether entities' size matters when stacking or not. This means that larger entities cannot be stacked on smaller ones - entitySizeMattersStacking = true - #Usually all the block state information is retained when placing a block that was picked up. But some information is changed to a modified property, like rotation or orientation. In this list, add additional properties that should NOT be saved and instead be updated when placed. Format: modid:block[propertyname]. Note: You don't need to add an entry for every subtype of a same block. For example, we only add an entry for one type of slab, but the change is applied to all slabs. - placementStateExceptions = ["minecraft:chest[type]", "minecraft:stone_button[face]", "minecraft:vine[north,east,south,west,up]", "minecraft:creeper_head[rotation]", "minecraft:glow_lichen[north,east,south,west,up,down]", "minecraft:oak_sign[rotation]", "minecraft:oak_trapdoor[half]"] - #Whether Players can be picked up. Creative players can't be picked up in Survival Mode - pickupPlayers = true - -[whitelist] - #Whitelist. Read about the format here: https://github.com/Tschipp/CarryOn/wiki/Black---and-Whitelist-Config - #Entities that CAN be picked up (useWhitelistEntities must be true) - allowedEntities = [] - #Blocks that CAN be picked up (useWhitelistBlocks must be true) - allowedBlocks = [] - #Entities that CAN have other entities stacked on top of them (useWhitelistStacking must be true) - allowedStacking = [] - -[blacklist] - #Blacklist. Read about the format here: https://github.com/Tschipp/CarryOn/wiki/Black---and-Whitelist-Config - #Blocks that cannot be picked up - forbiddenTiles = ["#forge:immovable", "#forge:relocation_not_supported", "minecraft:end_portal", "minecraft:piston_head", "minecraft:end_gateway", "minecraft:tall_grass", "minecraft:large_fern", "minecraft:peony", "minecraft:rose_bush", "minecraft:lilac", "minecraft:sunflower", "minecraft:*_bed", "minecraft:*_door", "minecraft:big_dripleaf_stem", "minecraft:waterlily", "minecraft:cake", "minecraft:nether_portal", "minecraft:tall_seagrass", "animania:block_trough", "animania:block_invisiblock", "colossalchests:*", "ic2:*", "bigreactors:*", "forestry:*", "tconstruct:*", "rustic:*", "botania:*", "astralsorcery:*", "quark:colored_bed_*", "immersiveengineering:*", "embers:block_furnace", "embers:ember_bore", "embers:ember_activator", "embers:mixer", "embers:heat_coil", "embers:large_tank", "embers:crystal_cell", "embers:alchemy_pedestal", "embers:boiler", "embers:combustor", "embers:catalzyer", "embers:field_chart", "embers:inferno_forge", "storagedrawers:framingtable", "skyresources:*", "lootbags:*", "exsartagine:*", "aquamunda:tank", "opencomputers:*", "malisisdoors:*", "industrialforegoing:*", "minecolonies:*", "thaumcraft:pillar*", "thaumcraft:infernal_furnace", "thaumcraft:placeholder*", "thaumcraft:infusion_matrix", "thaumcraft:golem_builder", "thaumcraft:thaumatorium*", "magneticraft:oil_heater", "magneticraft:solar_panel", "magneticraft:steam_engine", "magneticraft:shelving_unit", "magneticraft:grinder", "magneticraft:sieve", "magneticraft:solar_tower", "magneticraft:solar_mirror", "magneticraft:container", "magneticraft:pumpjack", "magneticraft:solar_panel", "magneticraft:refinery", "magneticraft:oil_heater", "magneticraft:hydraulic_press", "magneticraft:multiblock_gap", "refinedstorage:*", "mcmultipart:*", "enderstorage:*", "betterstorage:*", "practicallogistics2:*", "wearablebackpacks:*", "rftools:screen", "rftools:creative_screen", "create:*", "magic_doorknob:*", "iceandfire:*", "ftbquests:*", "waystones:*", "contact:*", "framedblocks:*", "littlelogistics:*"] - #Entities that cannot be picked up - forbiddenEntities = ["minecraft:end_crystal", "minecraft:ender_dragon", "minecraft:ghast", "minecraft:shulker", "minecraft:leash_knot", "minecraft:armor_stand", "minecraft:item_frame", "minecraft:painting", "minecraft:shulker_bullet", "animania:hamster", "animania:ferret*", "animania:hedgehog*", "animania:cart", "animania:wagon", "mynko:*", "pixelmon:*", "mocreatures:*", "quark:totem", "vehicle:*"] - #Entities that cannot have other entities stacked on top of them - forbiddenStacking = ["minecraft:horse"] - -[customPickupConditions] - #Custom Pickup Conditions. Read about the format here: https://github.com/Tschipp/CarryOn/wiki/Custom-Pickup-Condition-Config - #Custom Pickup Conditions for Blocks - customPickupConditionsBlocks = [] - #Custom Pickup Conditions for Entities - customPickupConditionsEntities = [] - diff --git a/config/fancymenu/customization/um-mainmenu.txt b/config/fancymenu/customization/um-mainmenu.txt index 66f5a0c..9b263bc 100755 --- a/config/fancymenu/customization/um-mainmenu.txt +++ b/config/fancymenu/customization/um-mainmenu.txt @@ -256,7 +256,7 @@ customization { enable_scrolling = true shadow = true scale = 1.0 - source = ScrumptiousCraft Um 1.0.19%n%Pack assembled by Raz%n%{"placeholder":"playeruuid"} + source = ScrumptiousCraft Um 1.1.0%n%Pack assembled by Raz%n%{"placeholder":"playeruuid"} text_border = 0 case_mode = normal source_mode = direct diff --git a/config/starterkit/starterkit.txt b/config/starterkit/starterkit.txt index 4d06a7d..1134d48 100644 --- a/config/starterkit/starterkit.txt +++ b/config/starterkit/starterkit.txt @@ -8,7 +8,7 @@ 2 : '{Count:1b,id:"minecraft:wooden_axe",tag:{Damage:0}}', 3 : '{Count:1b,id:"minecraft:white_bed"}', 4 : '{Count:1b,id:"solsweetpotato:food_book"}', -5 : '{Count:2b,id:"simpleshops:simple_shop"}', +5 : '{Count:2b,id:"toms_trading_network:vending_machine"}', 6 : '{Count:1b,id:"thermal:satchel",tag:{ItemInv:{ItemInv:[{Count:20b,Slot:0b,id:"thermal:bronze_coin"}]},RepairCost:0,display:{Name:'{"text":"Wallet"}'}}}', 7 : '{Count:1b,ForgeCaps:{Parent:{Items:[{Count:4b,Slot:0,id:"minecraft:cooked_mutton"},{Count:6b,Slot:1,id:"minecraft:bread"},{Count:8b,Slot:2,id:"minecraft:apple"},{Count:2b,Slot:3,id:"minecraft:cookie"}],Size:5}},id:"solsweetpotato:lunchbag"}', 8 : '{Count:16b,id:"minecraft:torch"}', diff --git a/index.toml b/index.toml index 08a4be7..518a4bc 100644 --- a/index.toml +++ b/index.toml @@ -20,10 +20,6 @@ hash = "418f8824835fa1e3490b26fcf43cb16d8bfb653a17a2a61b0854a7c18a0f5546" file = "config/canary.properties" hash = "e048897ad0aa8aedeff3073b0246082b4b502e29115555ab773402e97efc8c28" -[[files]] -file = "config/carryon-common.toml" -hash = "fc58bc1b3690259bda273aa79cf96d45a1d01cb3b19b71eb168472ba6243de50" - [[files]] file = "config/enhancedvisuals-client.json" hash = "ad170bba4bca8888f6484cda3153e1a9cdc9c5be81f2ca98c902962d1d606f96" @@ -42,7 +38,7 @@ hash = "4d1b1fb5cb5441c0579e67c0159a14a0ec0c393db1e378ec81efdb946e964c0a" [[files]] file = "config/fancymenu/customization/um-mainmenu.txt" -hash = "b10b59fd35628862c330bfd8f0340b98114d75b6d95f8b354c6772cf43311f0c" +hash = "e01cd1cff1c5b5d9cf69fb0351dd09c162e227bd8d1e115093ef5ee323561c69" [[files]] file = "config/fancymenu/customization/um-multiplayer-menu.txt" @@ -66,7 +62,7 @@ hash = "f4f94b6b9dcbbf19a828c842217306169bcff7f9570b81af612b5404bc4bda87" [[files]] file = "config/starterkit/starterkit.txt" -hash = "076347ab8b98ea4440f649563e48f204e7f6f886b7ecc9814576b2fae3a70092" +hash = "c3d57b88f8d5217f33736ffc10736137b90bee6f9597835097deef4cbd8355e1" [[files]] file = "config/toastcontrol-common.toml" @@ -233,6 +229,11 @@ file = "mods/cc-tweaked.pw.toml" hash = "9a0923ead8905649bc1260301508dc349ec7dd134fd8278a67e144d1f3ed68df" metafile = true +[[files]] +file = "mods/chunky.pw.toml" +hash = "d42a44515e657e67431cb042727db14f697b6d80c88c1da5fbe4c8afce738d29" +metafile = true + [[files]] file = "mods/clumps.pw.toml" hash = "5880c81df1af395ec3762eff4e98c78f7b75e62db67e1d191a1772d79aabc073" @@ -330,7 +331,7 @@ metafile = true [[files]] file = "mods/createaddition.pw.toml" -hash = "c00b90f4ba88e8b77ccf1b35608f5380b0e182a2c77f0e7e1a8d2f13d4cb5665" +hash = "5b9a6cc1eb37dea317debe134e5ee19a41d8c5822e003979fe866298657807c4" metafile = true [[files]] @@ -440,7 +441,7 @@ metafile = true [[files]] file = "mods/fastworkbench.pw.toml" -hash = "5db298a5768d41bc516ac521d95588ff074e5af6bd17567628d10f319ebd85ae" +hash = "ab09ecf0f07ee64186802e309c196c27337ff092eac196fa5f9c80b5a287badf" metafile = true [[files]] @@ -990,7 +991,7 @@ metafile = true [[files]] file = "mods/seasonhud.pw.toml" -hash = "f5f389dfb743543035a4fd4412658371fde9d08948d22275ddde48ee8f016dbb" +hash = "17ac105d0f3f2471fea085359d362e022d948307e497ad77d348f46e0b1c0b0b" metafile = true [[files]] @@ -1018,11 +1019,6 @@ file = "mods/shetiphiancore.pw.toml" hash = "e9c24e17fc72c175a7bb24a930769037f9f3e82f4e79ad34fe67ca7770419674" metafile = true -[[files]] -file = "mods/simple-shops.pw.toml" -hash = "d7baf988341b7460d51b96cb123ce03408cb04a008e522eabbf6c6029325ad62" -metafile = true - [[files]] file = "mods/smooth-boot-reloaded.pw.toml" hash = "49a62dc782f18f414f4dd5fd08a10a31c8698a87404ed12b7a847b6ac474c2e4" @@ -1153,6 +1149,11 @@ file = "mods/toast-control.pw.toml" hash = "8ff48d18f2fbe8df674dcd79aabcece27808667c270401b06ac10c97d7552990" metafile = true +[[files]] +file = "mods/toms-trading-network.pw.toml" +hash = "ceef32f674e015396093dea572c11cdbbf6d0d6d31721a9f2c58ba9ef77732d5" +metafile = true + [[files]] file = "mods/torchmaster.pw.toml" hash = "eb445d9519a2a81b60706da33663b2fc8201de6d486d98489a0f97fa1b0b00a9" diff --git a/mods/chunky.pw.toml b/mods/chunky.pw.toml new file mode 100644 index 0000000..4a56b08 --- /dev/null +++ b/mods/chunky.pw.toml @@ -0,0 +1,13 @@ +name = "Chunky" +filename = "Chunky-1.3.38.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/fALzjamp/versions/WNen5Iom/Chunky-1.3.38.jar" +hash-format = "sha1" +hash = "d347c38b359f39d6fdd6dcaa4b5baf54a30d7428" + +[update] +[update.modrinth] +mod-id = "fALzjamp" +version = "WNen5Iom" diff --git a/mods/createaddition.pw.toml b/mods/createaddition.pw.toml index a74c1b1..69b43db 100644 --- a/mods/createaddition.pw.toml +++ b/mods/createaddition.pw.toml @@ -1,13 +1,13 @@ name = "Create Crafts & Additions" -filename = "createaddition-1.19.2-20230411a.jar" +filename = "createaddition-1.19.2-20230426a.jar" side = "both" [download] hash-format = "sha1" -hash = "928b19d475b5694918f72f10387d8e8b4c40ece8" +hash = "1f307306cef8ad2c54bfcebc4d266e8c4ce741de" mode = "metadata:curseforge" [update] [update.curseforge] -file-id = 4486261 +file-id = 4508466 project-id = 439890 diff --git a/mods/fastworkbench.pw.toml b/mods/fastworkbench.pw.toml index b6f86a5..f7aac1d 100644 --- a/mods/fastworkbench.pw.toml +++ b/mods/fastworkbench.pw.toml @@ -1,13 +1,13 @@ name = "FastWorkbench" -filename = "FastWorkbench-1.19.2-7.1.1.jar" +filename = "FastWorkbench-1.19.2-7.1.2.jar" side = "both" [download] hash-format = "sha1" -hash = "2669ca8d9c8bff239fd1857c89f7b6dff54cd1dc" +hash = "3ab2e95727806a714fd0b015f27d3050ef091e50" mode = "metadata:curseforge" [update] [update.curseforge] -file-id = 4498885 +file-id = 4508990 project-id = 288885 diff --git a/mods/seasonhud.pw.toml b/mods/seasonhud.pw.toml index cd2f403..486a29a 100644 --- a/mods/seasonhud.pw.toml +++ b/mods/seasonhud.pw.toml @@ -1,13 +1,13 @@ name = "SeasonHUD" -filename = "seasonhud-1.19.2-1.4.12.jar" +filename = "seasonhud-1.19.2-1.4.13.jar" side = "both" [download] hash-format = "sha1" -hash = "91d7aef918db421aaa872e5ffb18ce4106b5c940" +hash = "3b56d3d87fb706d0a55a8fa6e9bf4c571896af41" mode = "metadata:curseforge" [update] [update.curseforge] -file-id = 4502920 +file-id = 4508782 project-id = 690971 diff --git a/mods/simple-shops.pw.toml b/mods/simple-shops.pw.toml deleted file mode 100644 index 017f88b..0000000 --- a/mods/simple-shops.pw.toml +++ /dev/null @@ -1,13 +0,0 @@ -name = "Simple Shops" -filename = "simpleshops-1.2.2.jar" -side = "both" - -[download] -hash-format = "sha1" -hash = "668b89645eba0151f4ac789a45f47e0c981e69a4" -mode = "metadata:curseforge" - -[update] -[update.curseforge] -file-id = 4409377 -project-id = 517272 diff --git a/mods/toms-trading-network.pw.toml b/mods/toms-trading-network.pw.toml new file mode 100644 index 0000000..df759f9 --- /dev/null +++ b/mods/toms-trading-network.pw.toml @@ -0,0 +1,13 @@ +name = "Tom's Trading Network" +filename = "toms_trading_network-1.19-0.1.0.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/x5iQ3NM5/versions/D474LYev/toms_trading_network-1.19-0.1.0.jar" +hash-format = "sha1" +hash = "630e8903fe3d04391af9d07a0ee9e330bd915b3b" + +[update] +[update.modrinth] +mod-id = "x5iQ3NM5" +version = "D474LYev" diff --git a/pack.toml b/pack.toml index 01f54c7..bbbff6a 100644 --- a/pack.toml +++ b/pack.toml @@ -1,12 +1,12 @@ name = "ScrumptiousCraft Um" author = "razage" -version = "1.0.19" +version = "1.0.20" pack-format = "packwiz:1.1.0" [index] file = "index.toml" hash-format = "sha256" -hash = "65a6ce7d318d431a6a8da673a74cce14c387f8bbee4a51b97e7671688df0f277" +hash = "3f84251ae86d1b02df7cf76ae33fadabf4f00421885669fc3a94cb681cd7755a" [versions] forge = "43.2.8" From 41122f31b9526e5f8ff6a3eded6c87c7c6e74196 Mon Sep 17 00:00:00 2001 From: Thomas Hinkle Date: Thu, 27 Apr 2023 12:36:10 -0500 Subject: [PATCH 09/36] oops lol --- pack.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pack.toml b/pack.toml index bbbff6a..8ced11e 100644 --- a/pack.toml +++ b/pack.toml @@ -1,6 +1,6 @@ name = "ScrumptiousCraft Um" author = "razage" -version = "1.0.20" +version = "1.1.0" pack-format = "packwiz:1.1.0" [index] From 75ecb11272b2f5cb163c5acab6e7a9906447d471 Mon Sep 17 00:00:00 2001 From: Thomas Hinkle Date: Thu, 27 Apr 2023 16:53:41 -0500 Subject: [PATCH 10/36] Added a set of updates to push us closer to release. --- CHANGELOG.md | 3 + defaultconfigs/ftbchunks/ftbchunks-world.snbt | 69 +++++++++++++++++-- index.toml | 7 +- mods/terralith.pw.toml | 13 ---- pack.toml | 2 +- 5 files changed, 69 insertions(+), 25 deletions(-) delete mode 100644 mods/terralith.pw.toml diff --git a/CHANGELOG.md b/CHANGELOG.md index 3c0a033..fa3936b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,7 @@ This will be the initial release for the production server. I will avoid adding ## Config Changes - Modified the starter kit to include the new shop block instead of the old one. +- Added our updated config for FTBChunks. ## Mods @@ -12,6 +13,8 @@ This will be the initial release for the production server. I will avoid adding - Simple Shops - It functions fine, but it is out-classed by our new trading mod. +- Terralith + - The mountains are cool, but probably too extreme. It might unintentionally unbalance the game due to weirdness with ore generation. ### Additions diff --git a/defaultconfigs/ftbchunks/ftbchunks-world.snbt b/defaultconfigs/ftbchunks/ftbchunks-world.snbt index 0838b19..8790dac 100644 --- a/defaultconfigs/ftbchunks/ftbchunks-world.snbt +++ b/defaultconfigs/ftbchunks/ftbchunks-world.snbt @@ -1,7 +1,34 @@ { + # Forced modes won't let players change their ally settings + # Default: "default" + # Valid values: "default", "forced_all", "forced_none" + ally_mode: "default" + + # Fallback offline chunk loading behaviour for when 'force_load_mode' is set to 'default' + # Default: true + chunk_load_offline: true + # Dimension ID's where chunks may not be claimed. Add "minecraft:the_end" to this list if you want to disable chunk claiming in The End, or "othermod:*" to disable chunk claiming in *all* dimensions added by "othermod" # Default: [] - claim_dimension_blacklist: [ "minecraft:the_end" ] + claim_dimension_blacklist: ["minecraft:the_end"] + + # Dimension ID's where chunks may be claimed. If non-empty, chunks may be claimed *only* in these dimensions (and the dimension is not in "claim_dimension_blacklist"). Same syntax as for "claim_dimension_blacklist". + # Default: [] + claim_dimension_whitelist: [ ] + + # Disables all land protection. Useful for private servers where everyone is trusted and claims are only used for force-loading + # Default: false + disable_protection: false + + # Override to disable/enable fake players like miners and auto-clickers globally. + # Default will check this setting for each team + # Default: "check" + # Valid values: "check", "deny", "allow" + fake_players: "check" + + # Minimap for clients connecting to this server will be disabled + # Default: false + force_disable_minimap: false # Control how force-loaded chunks work. # NEVER: only allow chunk force-loading if the owning team has at least one online player. @@ -14,24 +41,42 @@ # Hard limit for the number of chunks a team can claim, regardless of how many members. Default of 0 means no hard limit. # Default: 0 # Range: 0 ~ 2147483647 - hard_team_claim_limit: 64 + hard_team_claim_limit: 0 # Hard limit for the number of chunks a team can force-load, regardless of how many members. Default of 0 means no hard limit. # Default: 0 # Range: 0 ~ 2147483647 - hard_team_force_limit: 16 + hard_team_force_limit: 0 + + # If true, "Location Visibility" team settings are ignored, and all players can see each other anywhere on the map. + # Default: false + location_mode_override: false + + # Interval in ticks to send updates to clients with long-range player tracking data. + # Lower values mean more frequent updates but more server load and network traffic; be careful with this, especially on busy servers. + # Setting this to 0 disables long-range tracking. + # Default: 20 + # Range: 0 ~ 2147483647 + long_range_tracker_interval: 20 # Max claimed chunks. # You can override this with FTB Ranks 'ftbchunks.max_claimed' permission # Default: 500 # Range: -∞ ~ +∞ - max_claimed_chunks: 69420 + max_claimed_chunks: 64 # Max force loaded chunks. # You can override this with FTB Ranks 'ftbchunks.max_force_loaded' permission # Default: 25 # Range: -∞ ~ +∞ - max_force_loaded_chunks: 69420 + max_force_loaded_chunks: 16 + + # Maximum time (in real-world days) where if no player in a team logs in, the team automatically loses their claims. + # Prevents chunks being claimed indefinitely by teams who no longer play. + # Default of 0 means no automatic loss of claims. + # Default: 0.0 + # Range: 0.0 ~ 3650.0 + max_idle_days_before_unclaim: 0.0d # Maximum time (in real-world days) where if no player in a team logs in, any forceloaded chunks owned by the team are no longer forceloaded. # Prevents chunks being forceloaded indefinitely by teams who no longer play. @@ -40,6 +85,10 @@ # Range: 0.0 ~ 3650.0 max_idle_days_before_unforce: 7.0d + # Requires you to claim chunks in order to edit and interact with blocks + # Default: false + no_wilderness: false + # Method by which party claim & force-load limits are calculated. # LARGEST: use the limits of the member with the largest limits # SUM: add up all the members' limits @@ -48,4 +97,14 @@ # Default: "largest" # Valid values: "largest", "owner", "sum", "average" party_limit_mode: "sum" + + # When true, standard FTB Chunk explosion protection is applied in protected chunks when the source of the explosion cannot be determined + # (Ghast fireballs are a common case - vanilla supplies a null entity source) + # Default: true + protect_unknown_explosions: true + + # If true, the player must have the 'ftbchunks_mapping' Game stage to be able to use the map and minimap. + # Requires KubeJS and/or Gamestages to be installed. + # Default: false + require_game_stage: false } diff --git a/index.toml b/index.toml index 518a4bc..9667f28 100644 --- a/index.toml +++ b/index.toml @@ -74,7 +74,7 @@ hash = "fdd72ecae7321f7420b4b333e49964904e3059b1b95924f2643040b635427555" [[files]] file = "defaultconfigs/ftbchunks/ftbchunks-world.snbt" -hash = "379d22fd3111b76c611cc9647cbd759d025dd508ebe741951a74e4c5853f26b4" +hash = "ec98e3581f0ba8989d4277c9ba51280f39e3b6a4e65a887189f3d46275dd8154" [[files]] file = "defaultconfigs/ftbessentials.snbt" @@ -1094,11 +1094,6 @@ file = "mods/terrablender.pw.toml" hash = "64036b0bc617a33d904a0e6371ddc7d63896a888b1e0ada1a6eae8f647bb9327" metafile = true -[[files]] -file = "mods/terralith.pw.toml" -hash = "7d8109543303c680aa1d4d5d4e81548ec602f910ca2e9a32133a07c0dc3c2df7" -metafile = true - [[files]] file = "mods/thermal-cultivation.pw.toml" hash = "f66d3443df1b1d2619234a4e81851ff80c1821eb911307fcbaf52bbdbcfeafe3" diff --git a/mods/terralith.pw.toml b/mods/terralith.pw.toml deleted file mode 100644 index 33f0eb0..0000000 --- a/mods/terralith.pw.toml +++ /dev/null @@ -1,13 +0,0 @@ -name = "Terralith" -filename = "Terralith_1.19.3_v2.3.7b.jar" -side = "both" - -[download] -url = "https://cdn.modrinth.com/data/8oi3bsk5/versions/1latp88m/Terralith_1.19.3_v2.3.7b.jar" -hash-format = "sha1" -hash = "d886da3705ad6ffca075d9b60ae2267c61f15d32" - -[update] -[update.modrinth] -mod-id = "8oi3bsk5" -version = "1latp88m" diff --git a/pack.toml b/pack.toml index 8ced11e..ddff761 100644 --- a/pack.toml +++ b/pack.toml @@ -6,7 +6,7 @@ pack-format = "packwiz:1.1.0" [index] file = "index.toml" hash-format = "sha256" -hash = "3f84251ae86d1b02df7cf76ae33fadabf4f00421885669fc3a94cb681cd7755a" +hash = "0f70236606406468edef40129c173ccfe3eb3de52b2e6238b1972faf682604a9" [versions] forge = "43.2.8" From 59728a25687c3289cc5c57a0af0066426c9c629c Mon Sep 17 00:00:00 2001 From: Thomas Hinkle Date: Thu, 27 Apr 2023 19:06:45 -0500 Subject: [PATCH 11/36] Removed all fun from world generation. --- CHANGELOG.md | 6 ++++++ index.toml | 32 +++++++++++++++++++++----------- mods/architectury-api.pw.toml | 10 +++++----- mods/better-biome-blend.pw.toml | 13 +++++++++++++ mods/cloth-config.pw.toml | 13 +++++++++++++ mods/light-overlay.pw.toml | 13 +++++++++++++ mods/river-redux.pw.toml | 13 ------------- mods/tectonic.pw.toml | 13 ------------- mods/wavey-capes.pw.toml | 13 +++++++++++++ pack.toml | 2 +- 10 files changed, 85 insertions(+), 43 deletions(-) create mode 100644 mods/better-biome-blend.pw.toml create mode 100644 mods/cloth-config.pw.toml create mode 100644 mods/light-overlay.pw.toml delete mode 100644 mods/river-redux.pw.toml delete mode 100644 mods/tectonic.pw.toml create mode 100644 mods/wavey-capes.pw.toml diff --git a/CHANGELOG.md b/CHANGELOG.md index fa3936b..76d07df 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,17 +11,23 @@ This will be the initial release for the production server. I will avoid adding ### Removals +- River Redux - Simple Shops - It functions fine, but it is out-classed by our new trading mod. +- Tectonic - Terralith - The mountains are cool, but probably too extreme. It might unintentionally unbalance the game due to weirdness with ore generation. ### Additions +- Better Biome Blend - Chunky - Allows OPs to pre-generate chunks. +- Light Overlay + - Lets you see light levels by pressing F7. Red = Monsters will spawn anytime, Yellow = Monsters will spawn at night. - Tom's Trading Network - A better trading mod for a server economy. +- Wavey Capes ### Updates diff --git a/index.toml b/index.toml index 9667f28..3a7f3fa 100644 --- a/index.toml +++ b/index.toml @@ -156,7 +156,7 @@ metafile = true [[files]] file = "mods/architectury-api.pw.toml" -hash = "ff7d357e24271276700461907a889f1d846cb647d6831bf3a294a59eb8d0756c" +hash = "6d494e07259ad63215a5057af1885d5fa47bd0986afe4a4e56e8b22e9c6b664f" metafile = true [[files]] @@ -189,6 +189,11 @@ file = "mods/better-advancements.pw.toml" hash = "6d5097ecaf832199d5a8eb0d28bf7869134b54f93fd0999b7bdfe0129716c720" metafile = true +[[files]] +file = "mods/better-biome-blend.pw.toml" +hash = "d2c114dc8dd79d00fe215a3cf0e844638fba8a28ad711eaa1106cb68e02a4ea5" +metafile = true + [[files]] file = "mods/better-compatibility-checker.pw.toml" hash = "d6e632815eec579cf9763057f706a5a4eae2dd9237601e63b4c32bc57ac90338" @@ -234,6 +239,11 @@ file = "mods/chunky.pw.toml" hash = "d42a44515e657e67431cb042727db14f697b6d80c88c1da5fbe4c8afce738d29" metafile = true +[[files]] +file = "mods/cloth-config.pw.toml" +hash = "775ba9db8af593510ab38e497e4bed1aa5dcd7cae8cdd1d6a2dbe693c28de8fa" +metafile = true + [[files]] file = "mods/clumps.pw.toml" hash = "5880c81df1af395ec3762eff4e98c78f7b75e62db67e1d191a1772d79aabc073" @@ -614,6 +624,11 @@ file = "mods/libx.pw.toml" hash = "fb537f8737c8ee73a27c661ada6636b972a9a580dfd989bd1eabbec50b97a901" metafile = true +[[files]] +file = "mods/light-overlay.pw.toml" +hash = "22bed2f5be26074ac39fa491324906541b22260e91ac86e31b9c91ffaca8baa1" +metafile = true + [[files]] file = "mods/little-contraptions.pw.toml" hash = "6bf00bf499b93a28962bace1a8ac79e4baaa80020cce1ae509615df58713f92f" @@ -959,11 +974,6 @@ file = "mods/right-click-get-crops.pw.toml" hash = "78e046227b585a55f916b1e25a0d28287a781665169cb2905f9bfc5f54fe8f50" metafile = true -[[files]] -file = "mods/river-redux.pw.toml" -hash = "94ad9e8e1584a6d0196c00ff1bfc6044e1558bc28794a938eef2d008599eb686" -metafile = true - [[files]] file = "mods/rotten-creatures.pw.toml" hash = "3dd7e9906c670fc3380094f3273d702fdbdad02ffa35ffaf2e8c5bd4ce3de2a3" @@ -1084,11 +1094,6 @@ file = "mods/swingthroughgrass.pw.toml" hash = "ca83d6d210d1d289fc8999c481a778a3edcf4228c9de3d280cfd86012868e30f" metafile = true -[[files]] -file = "mods/tectonic.pw.toml" -hash = "c3031ad83db2a8dfbab15105f5260018a1d789c7cef90c24d1ff4d5f7359026e" -metafile = true - [[files]] file = "mods/terrablender.pw.toml" hash = "64036b0bc617a33d904a0e6371ddc7d63896a888b1e0ada1a6eae8f647bb9327" @@ -1179,6 +1184,11 @@ file = "mods/visual-workbench.pw.toml" hash = "de92543e67785a10dba40d50fc9deebb1990d19965e0b73b9cd63be55260e62d" metafile = true +[[files]] +file = "mods/wavey-capes.pw.toml" +hash = "6b8677362d29aa238f5b74aca85267251d776f2fb764cf792109cdbea7a5aecc" +metafile = true + [[files]] file = "mods/yeetusexperimentus.pw.toml" hash = "233f79cd76dc6d14c59a4cfbdc6660805c3f858e057061c1ca08df8cad73c56b" diff --git a/mods/architectury-api.pw.toml b/mods/architectury-api.pw.toml index 9187623..2835805 100644 --- a/mods/architectury-api.pw.toml +++ b/mods/architectury-api.pw.toml @@ -1,13 +1,13 @@ -name = "Architectury API (Fabric/Forge)" +name = "Architectury API" filename = "architectury-6.5.77-forge.jar" side = "both" [download] +url = "https://cdn.modrinth.com/data/lhGA9TYQ/versions/Kwuu4O4w/architectury-6.5.77-forge.jar" hash-format = "sha1" hash = "0aab8817d2afd240aa3203f686c65272c2604aa1" -mode = "metadata:curseforge" [update] -[update.curseforge] -file-id = 4476084 -project-id = 419699 +[update.modrinth] +mod-id = "lhGA9TYQ" +version = "Kwuu4O4w" diff --git a/mods/better-biome-blend.pw.toml b/mods/better-biome-blend.pw.toml new file mode 100644 index 0000000..3ab9c85 --- /dev/null +++ b/mods/better-biome-blend.pw.toml @@ -0,0 +1,13 @@ +name = "Better Biome Blend" +filename = "betterbiomeblend-1.19.0-1.3.6-forge.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/Rs6c7WyL/versions/1.19.0-1.3.6-forge/betterbiomeblend-1.19.0-1.3.6-forge.jar" +hash-format = "sha1" +hash = "c31265c2a0d331fc24b368e5e8b0dd1edbfc0e88" + +[update] +[update.modrinth] +mod-id = "Rs6c7WyL" +version = "VYGrD3XV" diff --git a/mods/cloth-config.pw.toml b/mods/cloth-config.pw.toml new file mode 100644 index 0000000..c9b6f8b --- /dev/null +++ b/mods/cloth-config.pw.toml @@ -0,0 +1,13 @@ +name = "Cloth Config API" +filename = "cloth-config-8.2.88-forge.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/9s6osm5g/versions/Fw7B2c97/cloth-config-8.2.88-forge.jar" +hash-format = "sha1" +hash = "fbd645755abc0dbe5eb1adeb5e649835294a769f" + +[update] +[update.modrinth] +mod-id = "9s6osm5g" +version = "Fw7B2c97" diff --git a/mods/light-overlay.pw.toml b/mods/light-overlay.pw.toml new file mode 100644 index 0000000..8c792a7 --- /dev/null +++ b/mods/light-overlay.pw.toml @@ -0,0 +1,13 @@ +name = "Light Overlay" +filename = "light-overlay-7.0.1-forge.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/YfOlc91N/versions/MCXtDQmP/light-overlay-7.0.1-forge.jar" +hash-format = "sha1" +hash = "62e281d2fb32a30708249765b81584aafd132d00" + +[update] +[update.modrinth] +mod-id = "YfOlc91N" +version = "MCXtDQmP" diff --git a/mods/river-redux.pw.toml b/mods/river-redux.pw.toml deleted file mode 100644 index 9e89d92..0000000 --- a/mods/river-redux.pw.toml +++ /dev/null @@ -1,13 +0,0 @@ -name = "River Redux" -filename = "riverredux-0.3.0+forge.jar" -side = "both" - -[download] -url = "https://cdn.modrinth.com/data/dhhdnacC/versions/gqb47kPv/riverredux-0.3.0%2Bforge.jar" -hash-format = "sha1" -hash = "a2caf20c7a1ea472fd83e06b3689e8bda223341d" - -[update] -[update.modrinth] -mod-id = "dhhdnacC" -version = "gqb47kPv" diff --git a/mods/tectonic.pw.toml b/mods/tectonic.pw.toml deleted file mode 100644 index e30ca9e..0000000 --- a/mods/tectonic.pw.toml +++ /dev/null @@ -1,13 +0,0 @@ -name = "Tectonic" -filename = "tectonic-mod-mc1.19.2-v1.1.9b.jar" -side = "both" - -[download] -url = "https://cdn.modrinth.com/data/lWDHr9jE/versions/65V8fhDb/tectonic-mod-mc1.19.2-v1.1.9b.jar" -hash-format = "sha1" -hash = "e10e29815930cfa3c6db31c940e8aebde37d6950" - -[update] -[update.modrinth] -mod-id = "lWDHr9jE" -version = "65V8fhDb" diff --git a/mods/wavey-capes.pw.toml b/mods/wavey-capes.pw.toml new file mode 100644 index 0000000..9074700 --- /dev/null +++ b/mods/wavey-capes.pw.toml @@ -0,0 +1,13 @@ +name = "Wavey Capes" +filename = "waveycapes-forge-1.3.2-mc1.19.2.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/kYuIpRLv/versions/B7KaqyA9/waveycapes-forge-1.3.2-mc1.19.2.jar" +hash-format = "sha1" +hash = "44c1204f1a40bc318d02777aa42e99455c6d4c8e" + +[update] +[update.modrinth] +mod-id = "kYuIpRLv" +version = "B7KaqyA9" diff --git a/pack.toml b/pack.toml index ddff761..59cc324 100644 --- a/pack.toml +++ b/pack.toml @@ -6,7 +6,7 @@ pack-format = "packwiz:1.1.0" [index] file = "index.toml" hash-format = "sha256" -hash = "0f70236606406468edef40129c173ccfe3eb3de52b2e6238b1972faf682604a9" +hash = "1f94ddf4b9fd731ef83fce724f99c3b5e55d98650138ef40a116bf15b8902d59" [versions] forge = "43.2.8" From 1b91d2aa50f12332d9388875e722a04f3eb91bea Mon Sep 17 00:00:00 2001 From: Thomas Hinkle Date: Thu, 27 Apr 2023 19:11:04 -0500 Subject: [PATCH 12/36] Removing a broken mod. --- CHANGELOG.md | 1 - index.toml | 5 ----- mods/better-biome-blend.pw.toml | 13 ------------- pack.toml | 2 +- 4 files changed, 1 insertion(+), 20 deletions(-) delete mode 100644 mods/better-biome-blend.pw.toml diff --git a/CHANGELOG.md b/CHANGELOG.md index 76d07df..3de7408 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -20,7 +20,6 @@ This will be the initial release for the production server. I will avoid adding ### Additions -- Better Biome Blend - Chunky - Allows OPs to pre-generate chunks. - Light Overlay diff --git a/index.toml b/index.toml index 3a7f3fa..2f9daae 100644 --- a/index.toml +++ b/index.toml @@ -189,11 +189,6 @@ file = "mods/better-advancements.pw.toml" hash = "6d5097ecaf832199d5a8eb0d28bf7869134b54f93fd0999b7bdfe0129716c720" metafile = true -[[files]] -file = "mods/better-biome-blend.pw.toml" -hash = "d2c114dc8dd79d00fe215a3cf0e844638fba8a28ad711eaa1106cb68e02a4ea5" -metafile = true - [[files]] file = "mods/better-compatibility-checker.pw.toml" hash = "d6e632815eec579cf9763057f706a5a4eae2dd9237601e63b4c32bc57ac90338" diff --git a/mods/better-biome-blend.pw.toml b/mods/better-biome-blend.pw.toml deleted file mode 100644 index 3ab9c85..0000000 --- a/mods/better-biome-blend.pw.toml +++ /dev/null @@ -1,13 +0,0 @@ -name = "Better Biome Blend" -filename = "betterbiomeblend-1.19.0-1.3.6-forge.jar" -side = "both" - -[download] -url = "https://cdn.modrinth.com/data/Rs6c7WyL/versions/1.19.0-1.3.6-forge/betterbiomeblend-1.19.0-1.3.6-forge.jar" -hash-format = "sha1" -hash = "c31265c2a0d331fc24b368e5e8b0dd1edbfc0e88" - -[update] -[update.modrinth] -mod-id = "Rs6c7WyL" -version = "VYGrD3XV" diff --git a/pack.toml b/pack.toml index 59cc324..1ed4b84 100644 --- a/pack.toml +++ b/pack.toml @@ -6,7 +6,7 @@ pack-format = "packwiz:1.1.0" [index] file = "index.toml" hash-format = "sha256" -hash = "1f94ddf4b9fd731ef83fce724f99c3b5e55d98650138ef40a116bf15b8902d59" +hash = "7650772cd8489cffa6d26360285cd82de80f014cf33c42c209264e77f2d5e3ab" [versions] forge = "43.2.8" From b1e10bbea70fb56fe223bd61ae08d1de6c8cf5fa Mon Sep 17 00:00:00 2001 From: Thomas Hinkle Date: Thu, 27 Apr 2023 19:15:20 -0500 Subject: [PATCH 13/36] Added descriptions to the optional mods. Hopefully that's visible to the user. --- mods/full-grown-crop-marker.pw.toml | 1 + mods/observable.pw.toml | 1 + 2 files changed, 2 insertions(+) diff --git a/mods/full-grown-crop-marker.pw.toml b/mods/full-grown-crop-marker.pw.toml index a98ce0f..6d29ba0 100644 --- a/mods/full-grown-crop-marker.pw.toml +++ b/mods/full-grown-crop-marker.pw.toml @@ -9,6 +9,7 @@ hash = "6d23e75082bdbac8a74120a3bfd3b1d91ea8d7b3" [option] optional = true +description = "Places a colored exclamation mark above crops when they're fully grown." [update] [update.modrinth] diff --git a/mods/observable.pw.toml b/mods/observable.pw.toml index 0e32178..c0570a9 100644 --- a/mods/observable.pw.toml +++ b/mods/observable.pw.toml @@ -9,6 +9,7 @@ mode = "metadata:curseforge" [option] optional = true +description = "A tool to help OPs detect what is using a bunch of ticks on the server." [update] [update.curseforge] From a02a8f434ecafc046eb96a1475f7c626f486e262 Mon Sep 17 00:00:00 2001 From: Thomas Hinkle Date: Thu, 27 Apr 2023 19:26:51 -0500 Subject: [PATCH 14/36] Marked a few mods as client only --- index.toml | 12 ++++++------ mods/fancymenu-forge.pw.toml | 2 +- mods/seasonhud.pw.toml | 2 +- mods/sound-physics-remastered.pw.toml | 2 +- mods/toast-control.pw.toml | 2 +- pack.toml | 2 +- 6 files changed, 11 insertions(+), 11 deletions(-) diff --git a/index.toml b/index.toml index 2f9daae..a049fca 100644 --- a/index.toml +++ b/index.toml @@ -431,7 +431,7 @@ metafile = true [[files]] file = "mods/fancymenu-forge.pw.toml" -hash = "d5ca40e2692def1540d7935ded342d1596105d04c770874d07029a8d1f19b782" +hash = "2cebf85aec8b5fdd96ecdb0620c4b74d8cc9d2b862d9e1b0300c8ccf07383730" metafile = true [[files]] @@ -496,7 +496,7 @@ metafile = true [[files]] file = "mods/full-grown-crop-marker.pw.toml" -hash = "915672f0c066fb2601b551dad8bdf349f7d5352388833c8cc6adc4e790b4366e" +hash = "520c6425fa4e87ba88a052b06710edbbdb9a64e6880b5bbeeb4985e6a3636ab0" metafile = true [[files]] @@ -801,7 +801,7 @@ metafile = true [[files]] file = "mods/observable.pw.toml" -hash = "a9b531535c2d136f62ec6157782dbedf858a9f71091ffad84da1a37664384922" +hash = "ec384d750a204dd91e3c7f5923fc6bd3ad070966878796314a20adfdd00a036a" metafile = true [[files]] @@ -996,7 +996,7 @@ metafile = true [[files]] file = "mods/seasonhud.pw.toml" -hash = "17ac105d0f3f2471fea085359d362e022d948307e497ad77d348f46e0b1c0b0b" +hash = "bcc59d1c1d57809477f469063f808fda2b24587b3619e5a4863b5337bdcb97f8" metafile = true [[files]] @@ -1046,7 +1046,7 @@ metafile = true [[files]] file = "mods/sound-physics-remastered.pw.toml" -hash = "f2911639cfd58f1f44df7835493555a5aea7a729413f1c5f6dae744136d4c782" +hash = "41419c8e8fe91364395ca5add1f59b6c93174930c8ab7071e14e2a86695954f6" metafile = true [[files]] @@ -1141,7 +1141,7 @@ metafile = true [[files]] file = "mods/toast-control.pw.toml" -hash = "8ff48d18f2fbe8df674dcd79aabcece27808667c270401b06ac10c97d7552990" +hash = "8497d377cb7695bbcdb10a04391b054727a42e23cc1fc1774842109127955b4e" metafile = true [[files]] diff --git a/mods/fancymenu-forge.pw.toml b/mods/fancymenu-forge.pw.toml index 5edfe5d..854260c 100644 --- a/mods/fancymenu-forge.pw.toml +++ b/mods/fancymenu-forge.pw.toml @@ -1,6 +1,6 @@ name = "FancyMenu [Forge]" filename = "fancymenu_forge_2.14.7_MC_1.19-1.19.2.jar" -side = "both" +side = "client" [download] hash-format = "sha1" diff --git a/mods/seasonhud.pw.toml b/mods/seasonhud.pw.toml index 486a29a..58639d4 100644 --- a/mods/seasonhud.pw.toml +++ b/mods/seasonhud.pw.toml @@ -1,6 +1,6 @@ name = "SeasonHUD" filename = "seasonhud-1.19.2-1.4.13.jar" -side = "both" +side = "client" [download] hash-format = "sha1" diff --git a/mods/sound-physics-remastered.pw.toml b/mods/sound-physics-remastered.pw.toml index eeb4d7c..3027694 100644 --- a/mods/sound-physics-remastered.pw.toml +++ b/mods/sound-physics-remastered.pw.toml @@ -1,6 +1,6 @@ name = "Sound Physics Remastered" filename = "soundphysics-forge-1.19.2-1.0.18.jar" -side = "both" +side = "client" [download] hash-format = "sha1" diff --git a/mods/toast-control.pw.toml b/mods/toast-control.pw.toml index 11f7145..b59c263 100644 --- a/mods/toast-control.pw.toml +++ b/mods/toast-control.pw.toml @@ -1,6 +1,6 @@ name = "Toast Control" filename = "ToastControl-1.19.2-7.0.0.jar" -side = "both" +side = "client" [download] hash-format = "sha1" diff --git a/pack.toml b/pack.toml index 1ed4b84..188ad5f 100644 --- a/pack.toml +++ b/pack.toml @@ -6,7 +6,7 @@ pack-format = "packwiz:1.1.0" [index] file = "index.toml" hash-format = "sha256" -hash = "7650772cd8489cffa6d26360285cd82de80f014cf33c42c209264e77f2d5e3ab" +hash = "85b23e2e391a7851ea1d46e91f244aec0da901000bf7e0a33ff9b2edd7960ec5" [versions] forge = "43.2.8" From b04190e9933d4af362d9b01c8b4372f65cd740fc Mon Sep 17 00:00:00 2001 From: Thomas Hinkle Date: Fri, 28 Apr 2023 14:03:09 -0500 Subject: [PATCH 15/36] Added some QoL and tweaked some settings. --- CHANGELOG.md | 11 +++- config/create-common.toml | 65 +++++++++++++++++++++++ index.toml | 35 +++++++++--- mods/catalogue.pw.toml | 13 +++++ mods/connectivity.pw.toml | 6 +-- mods/curios.pw.toml | 12 ++--- mods/in-control.pw.toml | 6 +-- mods/kleeslabs.pw.toml | 6 +-- mods/mindful-darkness.pw.toml | 17 ++++++ mods/pneumaticcraft-repressurized.pw.toml | 6 +-- mods/puzzles-lib.pw.toml | 10 ++-- mods/seasonhud.pw.toml | 6 +-- mods/simple-hats.pw.toml | 13 +++++ pack.toml | 2 +- scrumptious-assets/quotelist.txt | 2 +- 15 files changed, 173 insertions(+), 37 deletions(-) create mode 100644 config/create-common.toml create mode 100644 mods/catalogue.pw.toml create mode 100644 mods/mindful-darkness.pw.toml create mode 100644 mods/simple-hats.pw.toml diff --git a/CHANGELOG.md b/CHANGELOG.md index 3de7408..23ed95e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,7 @@ This will be the initial release for the production server. I will avoid adding - Modified the starter kit to include the new shop block instead of the old one. - Added our updated config for FTBChunks. +- Made Create ores (besides zinc) slightly less common. ## Mods @@ -24,15 +25,23 @@ This will be the initial release for the production server. I will avoid adding - Allows OPs to pre-generate chunks. - Light Overlay - Lets you see light levels by pressing F7. Red = Monsters will spawn anytime, Yellow = Monsters will spawn at night. +- Mindful Darkness + - Adds a dark mode for Minecraft GUIs. Optional. +- Simple Hats + - Adds hats. - Tom's Trading Network - A better trading mod for a server economy. - Wavey Capes ### Updates +- Connectivity 3.5 -> 3.8 - Create Crafts and Additions 1.19.2-20230411a -> 1.19.2-20230426a - FastWorkbench 7.1.1 -> 7.1.2 -- SeasonHUD 1.4.12 -> 1.4.13 +- In Control! 7.1.3 -> 7.1.4 +- KleeSlabs 12.2.0 -> 12.3.0 +- PneumaticCraft: Repressurized 4.3.3-22 -> 4.3.4-24 +- SeasonHUD 1.4.12 -> 1.4.14 # 1.0.19 diff --git a/config/create-common.toml b/config/create-common.toml new file mode 100644 index 0000000..4e87a41 --- /dev/null +++ b/config/create-common.toml @@ -0,0 +1,65 @@ + +[worldgen] + + #. + #Modify Create's impact on your terrain + [worldgen.v2] + #. + #. + #Prevents all worldgen added by Create from taking effect + disableWorldGen = false + + [worldgen.v2.striated_ores_nether] + #. + #Range: > 0 + clusterSize = 32 + #. + #Amount of clusters generated per Chunk. + # >1 to spawn multiple. + # <1 to make it a chance. + # 0 to disable. + #Range: 0.0 ~ 512.0 + frequency = 0.0533333358168602 + #. + #Range: > -2147483648 + minHeight = 40 + #. + #Range: > -2147483648 + maxHeight = 90 + + [worldgen.v2.striated_ores_overworld] + #. + #Range: > 0 + clusterSize = 32 + #. + #Amount of clusters generated per Chunk. + # >1 to spawn multiple. + # <1 to make it a chance. + # 0 to disable. + #Range: 0.0 ~ 512.0 + frequency = 0.0533333358168602 + #. + #Range: > -2147483648 + minHeight = -30 + #. + #Range: > -2147483648 + maxHeight = 70 + + [worldgen.v2.zinc_ore] + #. + #Range: > 0 + clusterSize = 12 + #. + #Amount of clusters generated per Chunk. + # >1 to spawn multiple. + # <1 to make it a chance. + # 0 to disable. + #Range: 0.0 ~ 512.0 + frequency = 8.0 + #. + #Range: > -2147483648 + minHeight = -63 + #. + #Range: > -2147483648 + maxHeight = 70 + diff --git a/index.toml b/index.toml index a049fca..8f96502 100644 --- a/index.toml +++ b/index.toml @@ -20,6 +20,10 @@ hash = "418f8824835fa1e3490b26fcf43cb16d8bfb653a17a2a61b0854a7c18a0f5546" file = "config/canary.properties" hash = "e048897ad0aa8aedeff3073b0246082b4b502e29115555ab773402e97efc8c28" +[[files]] +file = "config/create-common.toml" +hash = "eb2df488d597220695de0fad95b60033245b58ce5eaa832f04334642470fab35" + [[files]] file = "config/enhancedvisuals-client.json" hash = "ad170bba4bca8888f6484cda3153e1a9cdc9c5be81f2ca98c902962d1d606f96" @@ -224,6 +228,11 @@ file = "mods/canary.pw.toml" hash = "58f75414da63386b16498d447ebd9c0074e72df9e8a667f075577e1813e5d31e" metafile = true +[[files]] +file = "mods/catalogue.pw.toml" +hash = "b3c16f0a62d3cd60e7db213c748920aa03a8dfd9d731a2723f0dcd59515b562b" +metafile = true + [[files]] file = "mods/cc-tweaked.pw.toml" hash = "9a0923ead8905649bc1260301508dc349ec7dd134fd8278a67e144d1f3ed68df" @@ -286,7 +295,7 @@ metafile = true [[files]] file = "mods/connectivity.pw.toml" -hash = "8900e9342e97cfd19abe1516be3743658eeb16a86bd54a92843bb27d24a862ec" +hash = "afee38ad5bef25d94504d3a80d7dde1d204f0cb9afef89f52c483ff938f0d365" metafile = true [[files]] @@ -356,7 +365,7 @@ metafile = true [[files]] file = "mods/curios.pw.toml" -hash = "350ab620f74b8385cc5f172bb445296a51e005d707e3a726e870b28132529e53" +hash = "31717a8dc67287e4521bda88a4be4a0e2b67cf0b65feeb116a772d3f908e7505" metafile = true [[files]] @@ -511,7 +520,7 @@ metafile = true [[files]] file = "mods/in-control.pw.toml" -hash = "c85b24ce70bdbb918b254c8807c90ec68ea18bcc6e2fc961e09b73af6d076125" +hash = "7711c3687d9df38e0a3826d2a4ba89f9a97db964ad60157f10609b0d51df502b" metafile = true [[files]] @@ -581,7 +590,7 @@ metafile = true [[files]] file = "mods/kleeslabs.pw.toml" -hash = "78a4fb37d653cbe548d840c7d394447b441506e46e388c7f221efc531aef7d59" +hash = "c6e2a0c7fb38e49759444332fa4540e64a67f3aa84f527b44a2d38ded9e5f67f" metafile = true [[files]] @@ -729,6 +738,11 @@ file = "mods/mekanism.pw.toml" hash = "f6cc47777418eada79b50d6cdd57bd6dc35017f8e46defd5e888a2d6215be0e1" metafile = true +[[files]] +file = "mods/mindful-darkness.pw.toml" +hash = "bd4a483f4060ba58d3d32ece696a259674a051e06ca14cc5f70db57b2729f854" +metafile = true + [[files]] file = "mods/mmmmmmmmmmmm.pw.toml" hash = "89032b1a50d49407a905ae0af9f65e5248357a7c19cf454a9a0f8ed6478ac365" @@ -861,7 +875,7 @@ metafile = true [[files]] file = "mods/pneumaticcraft-repressurized.pw.toml" -hash = "a66fac954e5d7e79ef35491d994d558118de5ea353cd46a770a46d06227f7a4c" +hash = "e2eb35bbb6073950ccb1e0fcf841b446e6697fec47bd4a794f928f95c07b9170" metafile = true [[files]] @@ -881,7 +895,7 @@ metafile = true [[files]] file = "mods/puzzles-lib.pw.toml" -hash = "ce27595ca61b2954c4e5d1f4ee73cc056656ab5873077ca4c3bc7ce18781f659" +hash = "a1304b946d3beb3f9c5b9fc98531e2d1f486340e9fdcbd89a76892115a74e1d2" metafile = true [[files]] @@ -996,7 +1010,7 @@ metafile = true [[files]] file = "mods/seasonhud.pw.toml" -hash = "bcc59d1c1d57809477f469063f808fda2b24587b3619e5a4863b5337bdcb97f8" +hash = "e175c62939f7433f9bf8ccb120473dcfe60291734ac088504630fe1b8d68d51f" metafile = true [[files]] @@ -1024,6 +1038,11 @@ file = "mods/shetiphiancore.pw.toml" hash = "e9c24e17fc72c175a7bb24a930769037f9f3e82f4e79ad34fe67ca7770419674" metafile = true +[[files]] +file = "mods/simple-hats.pw.toml" +hash = "63ba468b89e29320c9f8b5267d03faf54eb591f7b0434c592cb9009ab2299d2b" +metafile = true + [[files]] file = "mods/smooth-boot-reloaded.pw.toml" hash = "49a62dc782f18f414f4dd5fd08a10a31c8698a87404ed12b7a847b6ac474c2e4" @@ -1213,7 +1232,7 @@ hash = "96af150bb8fd127df42ba97651242dc3afb013c5fe23613d6644bc6dbbe9b48c" [[files]] file = "scrumptious-assets/quotelist.txt" -hash = "1d2af8cd338b690d2f3733fbe7a2044fcadc962b72bd4ab692a6fb9162356e71" +hash = "7904a142578b1036941e19a168f270cc501e8f0c8921127b9d40b36c2a1ec11f" [[files]] file = "scrumptious-assets/sc-text.png" diff --git a/mods/catalogue.pw.toml b/mods/catalogue.pw.toml new file mode 100644 index 0000000..46ed186 --- /dev/null +++ b/mods/catalogue.pw.toml @@ -0,0 +1,13 @@ +name = "Catalogue" +filename = "catalogue-1.7.0-1.19.2.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "e6f401e3a5dc3943a6780a31438cd223a3511eda" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 4171024 +project-id = 459701 diff --git a/mods/connectivity.pw.toml b/mods/connectivity.pw.toml index fa08557..dbbeb88 100644 --- a/mods/connectivity.pw.toml +++ b/mods/connectivity.pw.toml @@ -1,13 +1,13 @@ name = "Connectivity[Forge/Fabric]" -filename = "connectivity-1.19.2-3.5.jar" +filename = "connectivity-1.19.2-3.8.jar" side = "both" [download] hash-format = "sha1" -hash = "d126fb0e1c21bb27c10b5929d4881f3653b31c0f" +hash = "51773e20ab1f4f7f900ba5ae436a9a4bdfb48490" mode = "metadata:curseforge" [update] [update.curseforge] -file-id = 4508264 +file-id = 4510473 project-id = 470193 diff --git a/mods/curios.pw.toml b/mods/curios.pw.toml index 0eb2214..50fb2d6 100644 --- a/mods/curios.pw.toml +++ b/mods/curios.pw.toml @@ -1,13 +1,13 @@ -name = "Curios API (Forge)" +name = "Curios API" filename = "curios-forge-1.19.2-5.1.4.0.jar" side = "both" [download] +url = "https://cdn.modrinth.com/data/vvuO3ImH/versions/cpywqo8V/curios-forge-1.19.2-5.1.4.0.jar" hash-format = "sha1" -hash = "5d7da29583f8b67741a7a70581716d4c5085d82c" -mode = "metadata:curseforge" +hash = "3570c98fcd37a7f4f087b979cf1ab4f618b7724c" [update] -[update.curseforge] -file-id = 4493912 -project-id = 309927 +[update.modrinth] +mod-id = "vvuO3ImH" +version = "cpywqo8V" diff --git a/mods/in-control.pw.toml b/mods/in-control.pw.toml index 40cc3f3..3b9bf93 100644 --- a/mods/in-control.pw.toml +++ b/mods/in-control.pw.toml @@ -1,13 +1,13 @@ name = "In Control!" -filename = "incontrol-1.19-7.1.3.jar" +filename = "incontrol-1.19-7.1.4.jar" side = "both" [download] hash-format = "sha1" -hash = "0f738472835f53481a46ac1eac71eca53e08c991" +hash = "e8a6f28f7ca86e28f2d23eef207e1c95be45c196" mode = "metadata:curseforge" [update] [update.curseforge] -file-id = 4385228 +file-id = 4510178 project-id = 257356 diff --git a/mods/kleeslabs.pw.toml b/mods/kleeslabs.pw.toml index b931a67..9136b01 100644 --- a/mods/kleeslabs.pw.toml +++ b/mods/kleeslabs.pw.toml @@ -1,13 +1,13 @@ name = "KleeSlabs" -filename = "kleeslabs-forge-1.19.2-12.2.0.jar" +filename = "kleeslabs-forge-1.19.2-12.3.0.jar" side = "both" [download] hash-format = "sha1" -hash = "892482a62839e811102a506f0cdc3a3b55dbf437" +hash = "6b01513bbfd46c5505b6e00318df30d7bb2cee72" mode = "metadata:curseforge" [update] [update.curseforge] -file-id = 4440432 +file-id = 4510538 project-id = 241895 diff --git a/mods/mindful-darkness.pw.toml b/mods/mindful-darkness.pw.toml new file mode 100644 index 0000000..1154fb1 --- /dev/null +++ b/mods/mindful-darkness.pw.toml @@ -0,0 +1,17 @@ +name = "Mindful Darkness" +filename = "MindfulDarkness-v4.0.5-1.19.2-Forge.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/pzCY6C3e/versions/n5bazwHY/MindfulDarkness-v4.0.5-1.19.2-Forge.jar" +hash-format = "sha1" +hash = "c1f6734c3ddfea7747a69b42b8f7c634ce4240c9" + +[option] +optional = true +description = "Enables 'Dark Mode' on all Minecraft GUIs. Configurable for how 'dark' you want it." + +[update] +[update.modrinth] +mod-id = "pzCY6C3e" +version = "n5bazwHY" diff --git a/mods/pneumaticcraft-repressurized.pw.toml b/mods/pneumaticcraft-repressurized.pw.toml index ea9dfb7..dfc8401 100644 --- a/mods/pneumaticcraft-repressurized.pw.toml +++ b/mods/pneumaticcraft-repressurized.pw.toml @@ -1,13 +1,13 @@ name = "PneumaticCraft: Repressurized" -filename = "pneumaticcraft-repressurized-1.19.2-4.3.3-22.jar" +filename = "pneumaticcraft-repressurized-1.19.2-4.3.4-24.jar" side = "both" [download] hash-format = "sha1" -hash = "9469597a73c0278034aced403ebdbbd21ffa33f0" +hash = "b4b737bb36c5ddb4d3d53894994818c91df6b0ed" mode = "metadata:curseforge" [update] [update.curseforge] -file-id = 4412625 +file-id = 4510812 project-id = 281849 diff --git a/mods/puzzles-lib.pw.toml b/mods/puzzles-lib.pw.toml index b1fb2c0..f88b3d8 100644 --- a/mods/puzzles-lib.pw.toml +++ b/mods/puzzles-lib.pw.toml @@ -1,13 +1,13 @@ -name = "Puzzles Lib [Forge & Fabric]" +name = "Puzzles Lib" filename = "PuzzlesLib-v4.4.0-1.19.2-Forge.jar" side = "both" [download] +url = "https://cdn.modrinth.com/data/QAGBst4M/versions/NjsLQCQh/PuzzlesLib-v4.4.0-1.19.2-Forge.jar" hash-format = "sha1" hash = "d7f584edb68672d838fa68caf315e5cbb19d590d" -mode = "metadata:curseforge" [update] -[update.curseforge] -file-id = 4499052 -project-id = 495476 +[update.modrinth] +mod-id = "QAGBst4M" +version = "NjsLQCQh" diff --git a/mods/seasonhud.pw.toml b/mods/seasonhud.pw.toml index 58639d4..99f1a79 100644 --- a/mods/seasonhud.pw.toml +++ b/mods/seasonhud.pw.toml @@ -1,13 +1,13 @@ name = "SeasonHUD" -filename = "seasonhud-1.19.2-1.4.13.jar" +filename = "seasonhud-1.19.2-1.4.14.jar" side = "client" [download] hash-format = "sha1" -hash = "3b56d3d87fb706d0a55a8fa6e9bf4c571896af41" +hash = "26ed42f761d61cb4f8a7953013c517299be27b29" mode = "metadata:curseforge" [update] [update.curseforge] -file-id = 4508782 +file-id = 4510207 project-id = 690971 diff --git a/mods/simple-hats.pw.toml b/mods/simple-hats.pw.toml new file mode 100644 index 0000000..050e33e --- /dev/null +++ b/mods/simple-hats.pw.toml @@ -0,0 +1,13 @@ +name = "Simple Hats" +filename = "simplehats-forge-1.19.2-0.1.6.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/iSkQCp6b/versions/IDMdIuBs/simplehats-forge-1.19.2-0.1.6.jar" +hash-format = "sha1" +hash = "628caf41c47ba9866c407da810a8a02cb77c3e23" + +[update] +[update.modrinth] +mod-id = "iSkQCp6b" +version = "IDMdIuBs" diff --git a/pack.toml b/pack.toml index 188ad5f..a382a64 100644 --- a/pack.toml +++ b/pack.toml @@ -6,7 +6,7 @@ pack-format = "packwiz:1.1.0" [index] file = "index.toml" hash-format = "sha256" -hash = "85b23e2e391a7851ea1d46e91f244aec0da901000bf7e0a33ff9b2edd7960ec5" +hash = "37cd7232f388c5b4241604be3a3d119910b8d3a85a413d705a533e79bb65aecc" [versions] forge = "43.2.8" diff --git a/scrumptious-assets/quotelist.txt b/scrumptious-assets/quotelist.txt index e5d9683..fb4ce88 100755 --- a/scrumptious-assets/quotelist.txt +++ b/scrumptious-assets/quotelist.txt @@ -63,7 +63,7 @@ I'm sorry, are you fucking that dragon or is that dragon raping you? Why is the T-Rex raping the fucking dragon? Stop complaining about it being cold out if you're a fucking nudist Its real life somewhere -We don't have any new, fresh, or exiting buttplug quotes anymore +We don't have any new, fresh, or exciting buttplug quotes anymore I have a very special pussy Yo, is that gum? I guess I'll go then. Wait, this is my server! From 039965cb5db0b77cb51725b9f5a94a0e462bb071 Mon Sep 17 00:00:00 2001 From: Thomas Hinkle Date: Mon, 1 May 2023 12:50:06 -0500 Subject: [PATCH 16/36] Updated some mods --- CHANGELOG.md | 13 ++++++++++++- index.toml | 25 +++++++++++++++---------- mods/automatic-tool-swap.pw.toml | 13 +++++++++++++ mods/botany-pots.pw.toml | 6 +++--- mods/botany-trees.pw.toml | 6 +++--- mods/cooking-for-blockheads.pw.toml | 6 +++--- mods/crafting-tweaks.pw.toml | 6 +++--- mods/in-control.pw.toml | 6 +++--- mods/konkrete.pw.toml | 6 +++--- mods/kotlin-for-forge.pw.toml | 6 +++--- mods/libipn.pw.toml | 6 +++--- mods/rftools-builder.pw.toml | 6 +++--- mods/saturn.pw.toml | 6 +++--- pack.toml | 2 +- 14 files changed, 71 insertions(+), 42 deletions(-) create mode 100644 mods/automatic-tool-swap.pw.toml diff --git a/CHANGELOG.md b/CHANGELOG.md index 23ed95e..7ab6e8b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -21,6 +21,8 @@ This will be the initial release for the production server. I will avoid adding ### Additions +- Automatic Tool Swap + - Automatically swaps to the correct tool for breaking the block if it's in your hotbar. - Chunky - Allows OPs to pre-generate chunks. - Light Overlay @@ -35,12 +37,21 @@ This will be the initial release for the production server. I will avoid adding ### Updates +- Botany Pots 9.0.31 -> 9.0.33 +- Botany Trees 5.0.5 -> 5.0.7 - Connectivity 3.5 -> 3.8 +- Cooking for Blockheads 13.3.1 -> 13.3.2 +- Crafting Tweaks 15.1.6 -> 15.1.7 - Create Crafts and Additions 1.19.2-20230411a -> 1.19.2-20230426a - FastWorkbench 7.1.1 -> 7.1.2 -- In Control! 7.1.3 -> 7.1.4 +- In Control! 7.1.3 -> 7.1.5 - KleeSlabs 12.2.0 -> 12.3.0 +- Konkrete [Forge] 1.6.0 -> 1.6.1 +- Kotlin for Forge 3.11.0 -> 3.12.0 +- libIPN 2.0.6 -> 2.0.7 - PneumaticCraft: Repressurized 4.3.3-22 -> 4.3.4-24 +- RFTools Builder 5.2.6 -> 5.2.8 +- Saturn 0.0.3 -> 0.0.4 - SeasonHUD 1.4.12 -> 1.4.14 # 1.0.19 diff --git a/index.toml b/index.toml index 8f96502..4798409 100644 --- a/index.toml +++ b/index.toml @@ -168,6 +168,11 @@ file = "mods/attributefix.pw.toml" hash = "ae8887615e5e14d52bd739ce195044faea6308d748dc7bc996f005630a11f39d" metafile = true +[[files]] +file = "mods/automatic-tool-swap.pw.toml" +hash = "5c64b99524cb93d44a26eaf1a099f3c50728103826e9a2a5f1bccea945cf767e" +metafile = true + [[files]] file = "mods/autoreglib.pw.toml" hash = "93e1dd0ac54ad216cf4ee82e5ab12a7de23d7cdfe7a27eb0b0c168a1c939db4a" @@ -215,12 +220,12 @@ metafile = true [[files]] file = "mods/botany-pots.pw.toml" -hash = "ce8cbe488d2d459128f743be64355763c1996876f45c9057edb79ec6411c97f2" +hash = "16b6c476d7659dcc968312ce26af197f4c19f3b8d3fe5bed33bfb835de33b947" metafile = true [[files]] file = "mods/botany-trees.pw.toml" -hash = "75b18699150df4f2ba966e78f6f76dc85cb1794baaf848854d1824e3045c15b3" +hash = "2ff17f9a69c3a2d4156f87c6bc6ae3c6d60d64be1239d6ce52dec6b0b0be6f8b" metafile = true [[files]] @@ -310,7 +315,7 @@ metafile = true [[files]] file = "mods/cooking-for-blockheads.pw.toml" -hash = "2903d8b4bd76e49005ca60a3e90b57b864dea723bf715ccc535e065fb24b1327" +hash = "04fb977e669b2dc227691d90414c450ba397bcc7c79341ad1ba20841cdab167e" metafile = true [[files]] @@ -330,7 +335,7 @@ metafile = true [[files]] file = "mods/crafting-tweaks.pw.toml" -hash = "73a639dad386f5429d0ea427ccbd6807f17f2f550ac52e65976c134c1cc03a94" +hash = "d241b1f25745db20ef4a9cc73af390b2a30f31d6b2ecff689a9d4e2b11a8d1a1" metafile = true [[files]] @@ -520,7 +525,7 @@ metafile = true [[files]] file = "mods/in-control.pw.toml" -hash = "7711c3687d9df38e0a3826d2a4ba89f9a97db964ad60157f10609b0d51df502b" +hash = "cdba3e48ab3073ec056c666c8c478cdb37f950d1dd114b07304252f842e03171" metafile = true [[files]] @@ -595,12 +600,12 @@ metafile = true [[files]] file = "mods/konkrete.pw.toml" -hash = "cce2da708bff7a49e80be43a2ab4d42e236627c45a34b74356d8c30f293a3886" +hash = "04e6cbf4762f7264c2dad8728d4f495a98a0301e0d6fa27122840b064a27964e" metafile = true [[files]] file = "mods/kotlin-for-forge.pw.toml" -hash = "ee1ee7a327ab99accfd09c935272f85188fee63aa0e77807b9dea39067f5a3dc" +hash = "8fd61b13a6da4b7f5cdf69ab6241c296b3019846a1635a2cbb427fbbb21635b2" metafile = true [[files]] @@ -620,7 +625,7 @@ metafile = true [[files]] file = "mods/libipn.pw.toml" -hash = "580f7477d0e7a0d5e1542afa3326e034e427821a98191396c56e089604a9b4dc" +hash = "0d3e6c0147189635b4d6ebc77ce00b00e3200ccface603040a8801bd849f0ecc" metafile = true [[files]] @@ -945,7 +950,7 @@ metafile = true [[files]] file = "mods/rftools-builder.pw.toml" -hash = "3fb16981d76b6a50515924bd0b3b8e225287bcea5c00dfb10d7f40fc3d2098b7" +hash = "60bd665bbfc2add17c9840fcae15a58e7eb23cdf4bfb555e67c299f88667ca44" metafile = true [[files]] @@ -1000,7 +1005,7 @@ metafile = true [[files]] file = "mods/saturn.pw.toml" -hash = "a74c2a59b01831e566bcaabe70e95411d18ef665809ad12e62a14abba0c28824" +hash = "f58f6967e5b7d2d966a439edf6f27a89290c41a87049c0ed7324c887bbd6998c" metafile = true [[files]] diff --git a/mods/automatic-tool-swap.pw.toml b/mods/automatic-tool-swap.pw.toml new file mode 100644 index 0000000..b78fd32 --- /dev/null +++ b/mods/automatic-tool-swap.pw.toml @@ -0,0 +1,13 @@ +name = "Automatic Tool Swap" +filename = "ToolSwap-1.19.1-4.2.0.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/L9JLNLqk/versions/1.19.1-4.2.0/ToolSwap-1.19.1-4.2.0.jar" +hash-format = "sha1" +hash = "bbad985f7e6b858028781e70aabc06d548dce5b1" + +[update] +[update.modrinth] +mod-id = "L9JLNLqk" +version = "QcZkUSuZ" diff --git a/mods/botany-pots.pw.toml b/mods/botany-pots.pw.toml index 536182d..c81ba0f 100644 --- a/mods/botany-pots.pw.toml +++ b/mods/botany-pots.pw.toml @@ -1,13 +1,13 @@ name = "Botany Pots" -filename = "BotanyPots-Forge-1.19.2-9.0.31.jar" +filename = "BotanyPots-Forge-1.19.2-9.0.33.jar" side = "both" [download] hash-format = "sha1" -hash = "660378e50518aa2b65857f3d0edce92649bc9766" +hash = "e847040a99e69835dcca87b3a43e6224a212388c" mode = "metadata:curseforge" [update] [update.curseforge] -file-id = 4483474 +file-id = 4514735 project-id = 353928 diff --git a/mods/botany-trees.pw.toml b/mods/botany-trees.pw.toml index 5730434..5dd6382 100644 --- a/mods/botany-trees.pw.toml +++ b/mods/botany-trees.pw.toml @@ -1,13 +1,13 @@ name = "Botany Trees" -filename = "BotanyTrees-Forge-1.19.2-5.0.5.jar" +filename = "BotanyTrees-Forge-1.19.2-5.0.7.jar" side = "both" [download] hash-format = "sha1" -hash = "f8e7850f76b0ca8da86fdb9c14ad23fe02be4612" +hash = "eaadaa1fcb081e909a466fddb37541bcabd8d019" mode = "metadata:curseforge" [update] [update.curseforge] -file-id = 4457947 +file-id = 4514740 project-id = 411357 diff --git a/mods/cooking-for-blockheads.pw.toml b/mods/cooking-for-blockheads.pw.toml index eeb025f..17db860 100644 --- a/mods/cooking-for-blockheads.pw.toml +++ b/mods/cooking-for-blockheads.pw.toml @@ -1,13 +1,13 @@ name = "Cooking for Blockheads" -filename = "cookingforblockheads-forge-1.19.2-13.3.1.jar" +filename = "cookingforblockheads-forge-1.19.2-13.3.2.jar" side = "both" [download] hash-format = "sha1" -hash = "ff8445b8b0e396a408d41455aeec96452b7de091" +hash = "4498a132b7e59669565aabeb9aca2e3f90cd3ca2" mode = "metadata:curseforge" [update] [update.curseforge] -file-id = 4414171 +file-id = 4513817 project-id = 231484 diff --git a/mods/crafting-tweaks.pw.toml b/mods/crafting-tweaks.pw.toml index 0864aa6..13830b2 100644 --- a/mods/crafting-tweaks.pw.toml +++ b/mods/crafting-tweaks.pw.toml @@ -1,13 +1,13 @@ name = "Crafting Tweaks" -filename = "craftingtweaks-forge-1.19-15.1.6.jar" +filename = "craftingtweaks-forge-1.19.2-15.1.7.jar" side = "both" [download] hash-format = "sha1" -hash = "7ccbe75eac553d32fb30d611a4490eded0c5a94a" +hash = "d05032c09ac78072254267089ab0e36861d33fb6" mode = "metadata:curseforge" [update] [update.curseforge] -file-id = 4412675 +file-id = 4513858 project-id = 233071 diff --git a/mods/in-control.pw.toml b/mods/in-control.pw.toml index 3b9bf93..09fb3c5 100644 --- a/mods/in-control.pw.toml +++ b/mods/in-control.pw.toml @@ -1,13 +1,13 @@ name = "In Control!" -filename = "incontrol-1.19-7.1.4.jar" +filename = "incontrol-1.19-7.1.5.jar" side = "both" [download] hash-format = "sha1" -hash = "e8a6f28f7ca86e28f2d23eef207e1c95be45c196" +hash = "de040acac15feb3e88fe79c150fb33a8941aba72" mode = "metadata:curseforge" [update] [update.curseforge] -file-id = 4510178 +file-id = 4513203 project-id = 257356 diff --git a/mods/konkrete.pw.toml b/mods/konkrete.pw.toml index 741c04e..b2c0518 100644 --- a/mods/konkrete.pw.toml +++ b/mods/konkrete.pw.toml @@ -1,13 +1,13 @@ name = "Konkrete [Forge]" -filename = "konkrete_forge_1.6.0_MC_1.19-1.19.2.jar" +filename = "konkrete_forge_1.6.1_MC_1.19-1.19.2.jar" side = "both" [download] hash-format = "sha1" -hash = "ee067b9add82b9f12e4330daab5a28aebae0b956" +hash = "b89996fdaa01cc4dd88c77edba2de9aa17c4a00c" mode = "metadata:curseforge" [update] [update.curseforge] -file-id = 4136430 +file-id = 4514910 project-id = 410295 diff --git a/mods/kotlin-for-forge.pw.toml b/mods/kotlin-for-forge.pw.toml index 76b6a81..0b0219e 100644 --- a/mods/kotlin-for-forge.pw.toml +++ b/mods/kotlin-for-forge.pw.toml @@ -1,13 +1,13 @@ name = "Kotlin for Forge" -filename = "kotlinforforge-3.11.0-all.jar" +filename = "kotlinforforge-3.12.0-all.jar" side = "both" [download] hash-format = "sha1" -hash = "2ff94a16ec5ffb639cc0fa09f9c1ed0e78714e28" +hash = "cf09c1be6d8950e3f7551f02f141818aee5a3ec0" mode = "metadata:curseforge" [update] [update.curseforge] -file-id = 4439494 +file-id = 4513187 project-id = 351264 diff --git a/mods/libipn.pw.toml b/mods/libipn.pw.toml index 4540a12..4cbb7a6 100644 --- a/mods/libipn.pw.toml +++ b/mods/libipn.pw.toml @@ -1,13 +1,13 @@ name = "libIPN" -filename = "libIPN-forge-1.19-2.0.6.jar" +filename = "libIPN-forge-1.19-2.0.7.jar" side = "both" [download] hash-format = "sha1" -hash = "388106d82e5de1294f4acb8f2ef62f03cb68be39" +hash = "3888731ee718cd50921704047e3b20cfd58fd54f" mode = "metadata:curseforge" [update] [update.curseforge] -file-id = 4506676 +file-id = 4512911 project-id = 679177 diff --git a/mods/rftools-builder.pw.toml b/mods/rftools-builder.pw.toml index 551ad84..c45774f 100644 --- a/mods/rftools-builder.pw.toml +++ b/mods/rftools-builder.pw.toml @@ -1,13 +1,13 @@ name = "RFTools Builder" -filename = "rftoolsbuilder-1.19-5.2.6.jar" +filename = "rftoolsbuilder-1.19-5.2.8.jar" side = "both" [download] hash-format = "sha1" -hash = "b4111d0bf6a59d5dc8b81b27196543828a3c3f77" +hash = "0dcd9801e7b9d55d0af25b10fb1c1896adab4f11" mode = "metadata:curseforge" [update] [update.curseforge] -file-id = 4483653 +file-id = 4514999 project-id = 347706 diff --git a/mods/saturn.pw.toml b/mods/saturn.pw.toml index 6627369..b496bf3 100644 --- a/mods/saturn.pw.toml +++ b/mods/saturn.pw.toml @@ -1,13 +1,13 @@ name = "Saturn" -filename = "saturn-mc1.19.2-0.0.3.jar" +filename = "saturn-mc1.19.2-0.0.4.jar" side = "both" [download] hash-format = "sha1" -hash = "71609dff1c4f36efb324e4878843393e3b6bdef3" +hash = "122c44a1cc9a3894728f5cf099c29ce507b613c1" mode = "metadata:curseforge" [update] [update.curseforge] -file-id = 4500238 +file-id = 4513260 project-id = 670986 diff --git a/pack.toml b/pack.toml index a382a64..81179e4 100644 --- a/pack.toml +++ b/pack.toml @@ -6,7 +6,7 @@ pack-format = "packwiz:1.1.0" [index] file = "index.toml" hash-format = "sha256" -hash = "37cd7232f388c5b4241604be3a3d119910b8d3a85a413d705a533e79bb65aecc" +hash = "f793585b3b7ea8609c869aa29917c120feda32065ebe5bb76d2d2444c1949a51" [versions] forge = "43.2.8" From 50a504fd5dc44bc3100fc86088c1c45ee4cb1cb6 Mon Sep 17 00:00:00 2001 From: Thomas Hinkle Date: Thu, 4 May 2023 15:30:16 -0500 Subject: [PATCH 17/36] Updated several mods --- CHANGELOG.md | 7 ++++++- index.toml | 12 ++++++------ mods/almost-unified.pw.toml | 6 +++--- mods/architectury-api.pw.toml | 8 ++++---- mods/connectivity.pw.toml | 6 +++--- mods/create-deco.pw.toml | 6 +++--- mods/journeymap.pw.toml | 6 +++--- mods/sophisticated-core.pw.toml | 6 +++--- pack.toml | 2 +- 9 files changed, 32 insertions(+), 27 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7ab6e8b..15e9ae7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -37,14 +37,18 @@ This will be the initial release for the production server. I will avoid adding ### Updates +- Almost Unified 0.4.2 -> 0.4.4 +- Architectury API 6.5.77 -> 6.5.82 - Botany Pots 9.0.31 -> 9.0.33 - Botany Trees 5.0.5 -> 5.0.7 -- Connectivity 3.5 -> 3.8 +- Connectivity 3.5 -> 4.2 - Cooking for Blockheads 13.3.1 -> 13.3.2 - Crafting Tweaks 15.1.6 -> 15.1.7 - Create Crafts and Additions 1.19.2-20230411a -> 1.19.2-20230426a +- Create Deco 1.3.1 -> 1.3.2 - FastWorkbench 7.1.1 -> 7.1.2 - In Control! 7.1.3 -> 7.1.5 +- JourneyMap 5.9.5 -> 5.9.6 - KleeSlabs 12.2.0 -> 12.3.0 - Konkrete [Forge] 1.6.0 -> 1.6.1 - Kotlin for Forge 3.11.0 -> 3.12.0 @@ -53,6 +57,7 @@ This will be the initial release for the production server. I will avoid adding - RFTools Builder 5.2.6 -> 5.2.8 - Saturn 0.0.3 -> 0.0.4 - SeasonHUD 1.4.12 -> 1.4.14 +- Sophisticated Core 0.5.51.251 -> 0.5.53.257 # 1.0.19 diff --git a/index.toml b/index.toml index 4798409..3af09b2 100644 --- a/index.toml +++ b/index.toml @@ -135,7 +135,7 @@ metafile = true [[files]] file = "mods/almost-unified.pw.toml" -hash = "59b8fb44cb978053fd40d92f6b5c603ce4c0fa710914b336f2f3f8792e01a7dc" +hash = "6da1f9825e32456bc7fddc7355db319529cc56089900cce016fe671306202f68" metafile = true [[files]] @@ -160,7 +160,7 @@ metafile = true [[files]] file = "mods/architectury-api.pw.toml" -hash = "6d494e07259ad63215a5057af1885d5fa47bd0986afe4a4e56e8b22e9c6b664f" +hash = "fcabb4357f5f82f9a010a55a1e4758d5e8aaafee04b36614ad60861889b887db" metafile = true [[files]] @@ -300,7 +300,7 @@ metafile = true [[files]] file = "mods/connectivity.pw.toml" -hash = "afee38ad5bef25d94504d3a80d7dde1d204f0cb9afef89f52c483ff938f0d365" +hash = "7c1bcf396290bf3e32b9f1e44f128d5f1568ab18e48c821defb001c226c59a2e" metafile = true [[files]] @@ -340,7 +340,7 @@ metafile = true [[files]] file = "mods/create-deco.pw.toml" -hash = "dd1dfe68b934f7a311aa513cee56dd00d1c33a29581a752c93f31260fa664bea" +hash = "6ddc3bbe998bc708a6d986368c3c798ea0df279b0de8a9a5cb67b0bc26cea5b8" metafile = true [[files]] @@ -580,7 +580,7 @@ metafile = true [[files]] file = "mods/journeymap.pw.toml" -hash = "d5e3f7a5eabe0f06a6ef5bbd5ccb3ef787fd4cceb3e018d0735475d48e7b4b34" +hash = "7de9b15fdbece680a4327148eb5c9d4610eaaca01b6fc08f84e9dd545d4fdfbb" metafile = true [[files]] @@ -1065,7 +1065,7 @@ metafile = true [[files]] file = "mods/sophisticated-core.pw.toml" -hash = "cfb7a2d8568d63aecbadd6fad0d83c420c8daf42251c0b4cf77f010aaf7ebe68" +hash = "7359a39beba9c2b70ca5965e42b88b9a4d3de56cefbf860f745a4898a71ca642" metafile = true [[files]] diff --git a/mods/almost-unified.pw.toml b/mods/almost-unified.pw.toml index 74d00d8..628348e 100644 --- a/mods/almost-unified.pw.toml +++ b/mods/almost-unified.pw.toml @@ -1,13 +1,13 @@ name = "Almost Unified" -filename = "almostunified-forge-1.19.2-0.4.2.jar" +filename = "almostunified-forge-1.19.2-0.4.4.jar" side = "both" [download] hash-format = "sha1" -hash = "a84b806b7b5a7771681347ceb5b66b6473c6a38e" +hash = "1d27e7c16d6db623731f7ff88df03c9532680715" mode = "metadata:curseforge" [update] [update.curseforge] -file-id = 4502464 +file-id = 4522173 project-id = 633823 diff --git a/mods/architectury-api.pw.toml b/mods/architectury-api.pw.toml index 2835805..9c43145 100644 --- a/mods/architectury-api.pw.toml +++ b/mods/architectury-api.pw.toml @@ -1,13 +1,13 @@ name = "Architectury API" -filename = "architectury-6.5.77-forge.jar" +filename = "architectury-6.5.82-forge.jar" side = "both" [download] -url = "https://cdn.modrinth.com/data/lhGA9TYQ/versions/Kwuu4O4w/architectury-6.5.77-forge.jar" +url = "https://cdn.modrinth.com/data/lhGA9TYQ/versions/w5Kw8FAN/architectury-6.5.82-forge.jar" hash-format = "sha1" -hash = "0aab8817d2afd240aa3203f686c65272c2604aa1" +hash = "1d10cdaf8c620ed788839c099fadff9bfaa82b26" [update] [update.modrinth] mod-id = "lhGA9TYQ" -version = "Kwuu4O4w" +version = "w5Kw8FAN" diff --git a/mods/connectivity.pw.toml b/mods/connectivity.pw.toml index dbbeb88..979ddb8 100644 --- a/mods/connectivity.pw.toml +++ b/mods/connectivity.pw.toml @@ -1,13 +1,13 @@ name = "Connectivity[Forge/Fabric]" -filename = "connectivity-1.19.2-3.8.jar" +filename = "connectivity-1.19.2-4.2.jar" side = "both" [download] hash-format = "sha1" -hash = "51773e20ab1f4f7f900ba5ae436a9a4bdfb48490" +hash = "d05267e51aba269e2a44ebb7b07fcb82e0b8b773" mode = "metadata:curseforge" [update] [update.curseforge] -file-id = 4510473 +file-id = 4521440 project-id = 470193 diff --git a/mods/create-deco.pw.toml b/mods/create-deco.pw.toml index e2a2c87..02f245a 100644 --- a/mods/create-deco.pw.toml +++ b/mods/create-deco.pw.toml @@ -1,13 +1,13 @@ name = "Create Deco" -filename = "createdeco-1.3.1-1.19.2.jar" +filename = "createdeco-1.3.2-1.19.2.jar" side = "both" [download] hash-format = "sha1" -hash = "5050283687d11b2044b6255864fee5405ed097ae" +hash = "833c238f9ef03f53aef2b6b5bad33886f9f8732f" mode = "metadata:curseforge" [update] [update.curseforge] -file-id = 4504123 +file-id = 4519287 project-id = 509285 diff --git a/mods/journeymap.pw.toml b/mods/journeymap.pw.toml index e0dbf41..2ef272e 100644 --- a/mods/journeymap.pw.toml +++ b/mods/journeymap.pw.toml @@ -1,13 +1,13 @@ name = "JourneyMap" -filename = "journeymap-1.19.2-5.9.5-forge.jar" +filename = "journeymap-1.19.2-5.9.6-forge.jar" side = "both" [download] hash-format = "sha1" -hash = "483e32774f7f2b9f14af3a20ed2ce0276b51750a" +hash = "89ef890f852bacc76b9c45bfee63cf4e2e1d9abe" mode = "metadata:curseforge" [update] [update.curseforge] -file-id = 4473123 +file-id = 4517057 project-id = 32274 diff --git a/mods/sophisticated-core.pw.toml b/mods/sophisticated-core.pw.toml index c5dbce3..b7551ca 100644 --- a/mods/sophisticated-core.pw.toml +++ b/mods/sophisticated-core.pw.toml @@ -1,13 +1,13 @@ name = "Sophisticated Core" -filename = "sophisticatedcore-1.19.2-0.5.51.251.jar" +filename = "sophisticatedcore-1.19.2-0.5.53.257.jar" side = "both" [download] hash-format = "sha1" -hash = "3a012a31384b2f71563ee38359e3bd3b26496450" +hash = "ca80f7c52c24079c9e5b2abf44aa232a2d44fd2f" mode = "metadata:curseforge" [update] [update.curseforge] -file-id = 4503931 +file-id = 4520497 project-id = 618298 diff --git a/pack.toml b/pack.toml index 81179e4..6995332 100644 --- a/pack.toml +++ b/pack.toml @@ -6,7 +6,7 @@ pack-format = "packwiz:1.1.0" [index] file = "index.toml" hash-format = "sha256" -hash = "f793585b3b7ea8609c869aa29917c120feda32065ebe5bb76d2d2444c1949a51" +hash = "f0698e6d0399803b317ea0bf2530716e5aae581a48221b87b38e723993d9d24f" [versions] forge = "43.2.8" From b2dd67674a69a62b78feef292796bc2cd4bba7c8 Mon Sep 17 00:00:00 2001 From: Thomas Hinkle Date: Sat, 6 May 2023 10:09:48 -0500 Subject: [PATCH 18/36] Updated some mods and found the holy grail, in terms of quarry mods. --- CHANGELOG.md | 13 +++++++++ index.toml | 35 +++++++++++++++++++++---- mods/additional-enchanted-miner.pw.toml | 13 +++++++++ mods/angel-block-renewed.pw.toml | 13 +++++++++ mods/curios.pw.toml | 8 +++--- mods/ob-aquamirae.pw.toml | 6 ++--- mods/obscure-api.pw.toml | 6 ++--- mods/pams-harvestcraft-2-crops.pw.toml | 6 ++--- mods/reblured.pw.toml | 16 +++++++++++ mods/scalable-cats-force.pw.toml | 13 +++++++++ mods/seamless.pw.toml | 13 +++++++++ mods/toms-trading-network.pw.toml | 8 +++--- pack.toml | 2 +- 13 files changed, 129 insertions(+), 23 deletions(-) create mode 100644 mods/additional-enchanted-miner.pw.toml create mode 100644 mods/angel-block-renewed.pw.toml create mode 100644 mods/reblured.pw.toml create mode 100644 mods/scalable-cats-force.pw.toml create mode 100644 mods/seamless.pw.toml diff --git a/CHANGELOG.md b/CHANGELOG.md index 15e9ae7..13df918 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -21,6 +21,10 @@ This will be the initial release for the production server. I will avoid adding ### Additions +- Additional Enchanted Miner + - Adds the BuildCraft quarry with fluid pumping and enchanting capabilities. +- Angel Block Renewed + - Adds the Angel Block from Extra Utilities. It can be placed in the air and broken instantly without a tool. - Automatic Tool Swap - Automatically swaps to the correct tool for breaking the block if it's in your hotbar. - Chunky @@ -29,6 +33,10 @@ This will be the initial release for the production server. I will avoid adding - Lets you see light levels by pressing F7. Red = Monsters will spawn anytime, Yellow = Monsters will spawn at night. - Mindful Darkness - Adds a dark mode for Minecraft GUIs. Optional. +- ReBlured + - Blurs backgrounds when GUIs are open. Optional. +- Seamless + - Makes some textures of blocks placed next to each other "seamless". For example, beds, doors, pistons, and large plants. Might not work with modded items. - Simple Hats - Adds hats. - Tom's Trading Network @@ -38,6 +46,7 @@ This will be the initial release for the production server. I will avoid adding ### Updates - Almost Unified 0.4.2 -> 0.4.4 +- Aquamirae 5.6.API14 -> 6.API15 - Architectury API 6.5.77 -> 6.5.82 - Botany Pots 9.0.31 -> 9.0.33 - Botany Trees 5.0.5 -> 5.0.7 @@ -46,6 +55,7 @@ This will be the initial release for the production server. I will avoid adding - Crafting Tweaks 15.1.6 -> 15.1.7 - Create Crafts and Additions 1.19.2-20230411a -> 1.19.2-20230426a - Create Deco 1.3.1 -> 1.3.2 +- Curios API 5.1.4.0 -> 5.1.4.1 - FastWorkbench 7.1.1 -> 7.1.2 - In Control! 7.1.3 -> 7.1.5 - JourneyMap 5.9.5 -> 5.9.6 @@ -53,11 +63,14 @@ This will be the initial release for the production server. I will avoid adding - Konkrete [Forge] 1.6.0 -> 1.6.1 - Kotlin for Forge 3.11.0 -> 3.12.0 - libIPN 2.0.6 -> 2.0.7 +- Obscure API 14 -> 15 +- Pam's HarvestCraft 2 - Crops 1.0.1 -> 1.0.2 - PneumaticCraft: Repressurized 4.3.3-22 -> 4.3.4-24 - RFTools Builder 5.2.6 -> 5.2.8 - Saturn 0.0.3 -> 0.0.4 - SeasonHUD 1.4.12 -> 1.4.14 - Sophisticated Core 0.5.51.251 -> 0.5.53.257 +- Tom's Trading Network 0.1.0 -> 0.2.0 # 1.0.19 diff --git a/index.toml b/index.toml index 3af09b2..ff92dde 100644 --- a/index.toml +++ b/index.toml @@ -108,6 +108,11 @@ hash = "6b956902beb69b0abe652b87a12fc49cd260b10ea2568a9fed6378cdf8bd5d87" file = "kubejs/server_scripts/currency.js" hash = "fdb06bfee31a9cae4bebc3475a0d84344103d1e68f641e8aa81b51f3a878c480" +[[files]] +file = "mods/additional-enchanted-miner.pw.toml" +hash = "f15fab7e4346cb04bd34aaa5b3037a02793df36934f72a61c34dbfc158204a04" +metafile = true + [[files]] file = "mods/additional-guns.pw.toml" hash = "34166c2da1b033625306c1a4e262a0bd2211479beaabdc657bd8812391e5325c" @@ -148,6 +153,11 @@ file = "mods/ambientsounds.pw.toml" hash = "e83a90a5cf68abc34b30252825b16e0c95ca9245cf99788265020d6fa106e86a" metafile = true +[[files]] +file = "mods/angel-block-renewed.pw.toml" +hash = "b2296d52d2a7bfcc0f65ab418c91b41029683a3c5471a2c908799d456ccc12b4" +metafile = true + [[files]] file = "mods/appleskin.pw.toml" hash = "1be3c626f8c8e445e57444f2559dc590edafc75b6c8c18d4599703dbc614a7e8" @@ -370,7 +380,7 @@ metafile = true [[files]] file = "mods/curios.pw.toml" -hash = "31717a8dc67287e4521bda88a4be4a0e2b67cf0b65feeb116a772d3f908e7505" +hash = "e6100fffd00b339e62efc3a6eaad54ca697b197813dff048d6dce2613676ef92" metafile = true [[files]] @@ -810,12 +820,12 @@ metafile = true [[files]] file = "mods/ob-aquamirae.pw.toml" -hash = "597ffa1bbe78003b00e8b547c03e117ba8ec919a049aaa2bb7ee96c82726ac94" +hash = "9ea1de2b9464ba4142ade3df02cad432c085e26b2d8242875c9d970c43b9be07" metafile = true [[files]] file = "mods/obscure-api.pw.toml" -hash = "beb5669b640b6d19d294327a594060d176285439b76a39f1fc74e91774c2018d" +hash = "996f862229b588b1cc561bf9d799a09d5ad43aa0441e21fa18eb06a8040cd620" metafile = true [[files]] @@ -830,7 +840,7 @@ metafile = true [[files]] file = "mods/pams-harvestcraft-2-crops.pw.toml" -hash = "3ca071a3a0fb219f4a37c21d23a2ad2e0e5d966e98f35aeb290037bde40a77d3" +hash = "163fe70e260b40aca45d2aed419ffc703a6337c840da4cf514fa2768834626d0" metafile = true [[files]] @@ -908,6 +918,11 @@ file = "mods/reauth.pw.toml" hash = "da46985b92972295e91b1a3365b79fdd526ce3f7000c56e4975fa63112f57837" metafile = true +[[files]] +file = "mods/reblured.pw.toml" +hash = "22df3e457b5b70c9ad2e43e745b8106daece24e3be2788e64ff2478dc8876272" +metafile = true + [[files]] file = "mods/rebornstorage.pw.toml" hash = "36de4a21d87d8e0a21848a4af5eea79740ab1adfb882060c92ba01fbf1883ffe" @@ -1008,11 +1023,21 @@ file = "mods/saturn.pw.toml" hash = "f58f6967e5b7d2d966a439edf6f27a89290c41a87049c0ed7324c887bbd6998c" metafile = true +[[files]] +file = "mods/scalable-cats-force.pw.toml" +hash = "c76ff2646543643a4a020de957878ba3884d3882c12e772ae3c00500e5e28941" +metafile = true + [[files]] file = "mods/scannable.pw.toml" hash = "5e2d065192f522470a9a78987c66c979faa2c908bb0328def7ac48da5b23fe1e" metafile = true +[[files]] +file = "mods/seamless.pw.toml" +hash = "880a0362a60afd30ffe31eff8bc6a2554eca475309aef4c7294dfbc30ae43dfd" +metafile = true + [[files]] file = "mods/seasonhud.pw.toml" hash = "e175c62939f7433f9bf8ccb120473dcfe60291734ac088504630fe1b8d68d51f" @@ -1170,7 +1195,7 @@ metafile = true [[files]] file = "mods/toms-trading-network.pw.toml" -hash = "ceef32f674e015396093dea572c11cdbbf6d0d6d31721a9f2c58ba9ef77732d5" +hash = "54bffcdcb0b85b938e6e693845a443fa99f88df4d86447d4212d57e37e6133fe" metafile = true [[files]] diff --git a/mods/additional-enchanted-miner.pw.toml b/mods/additional-enchanted-miner.pw.toml new file mode 100644 index 0000000..82b68de --- /dev/null +++ b/mods/additional-enchanted-miner.pw.toml @@ -0,0 +1,13 @@ +name = "Additional Enchanted Miner" +filename = "AdditionalEnchantedMiner-1.19.2-1192.1.0.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/jhxX1zVW/versions/l6GZuMkU/AdditionalEnchantedMiner-1.19.2-1192.1.0.jar" +hash-format = "sha1" +hash = "e90d9cc3b46ae35a9a19b46391ace38d2cdfada5" + +[update] +[update.modrinth] +mod-id = "jhxX1zVW" +version = "l6GZuMkU" diff --git a/mods/angel-block-renewed.pw.toml b/mods/angel-block-renewed.pw.toml new file mode 100644 index 0000000..2143962 --- /dev/null +++ b/mods/angel-block-renewed.pw.toml @@ -0,0 +1,13 @@ +name = "Angel Block Renewed" +filename = "angelblockrenewed-forge-1.0-1.19.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/rq0QQVDc/versions/gAOMi8hS/angelblockrenewed-forge-1.0-1.19.jar" +hash-format = "sha1" +hash = "dfe75905a90ffada9b4b83585b68d4f8c787824f" + +[update] +[update.modrinth] +mod-id = "rq0QQVDc" +version = "gAOMi8hS" diff --git a/mods/curios.pw.toml b/mods/curios.pw.toml index 50fb2d6..12ee310 100644 --- a/mods/curios.pw.toml +++ b/mods/curios.pw.toml @@ -1,13 +1,13 @@ name = "Curios API" -filename = "curios-forge-1.19.2-5.1.4.0.jar" +filename = "curios-forge-1.19.2-5.1.4.1.jar" side = "both" [download] -url = "https://cdn.modrinth.com/data/vvuO3ImH/versions/cpywqo8V/curios-forge-1.19.2-5.1.4.0.jar" +url = "https://cdn.modrinth.com/data/vvuO3ImH/versions/uvQEq1xO/curios-forge-1.19.2-5.1.4.1.jar" hash-format = "sha1" -hash = "3570c98fcd37a7f4f087b979cf1ab4f618b7724c" +hash = "d6aa28a106c3844e208628d717c67fe623072051" [update] [update.modrinth] mod-id = "vvuO3ImH" -version = "cpywqo8V" +version = "uvQEq1xO" diff --git a/mods/ob-aquamirae.pw.toml b/mods/ob-aquamirae.pw.toml index dc5bd2d..395cb30 100644 --- a/mods/ob-aquamirae.pw.toml +++ b/mods/ob-aquamirae.pw.toml @@ -1,13 +1,13 @@ name = "Aquamirae" -filename = "aquamirae-5.6.API14.jar" +filename = "aquamirae-6.API15.jar" side = "both" [download] hash-format = "sha1" -hash = "e07344bd94af367d5a0205a9f789a8f3da1316b2" +hash = "aa00812f87ca2638e4bc476a777eb20f9386fa79" mode = "metadata:curseforge" [update] [update.curseforge] -file-id = 4375476 +file-id = 4522264 project-id = 536254 diff --git a/mods/obscure-api.pw.toml b/mods/obscure-api.pw.toml index 46b50ae..6a4f842 100644 --- a/mods/obscure-api.pw.toml +++ b/mods/obscure-api.pw.toml @@ -1,13 +1,13 @@ name = "Obscure API" -filename = "obscure_api-14.jar" +filename = "obscure_api-15.jar" side = "both" [download] hash-format = "sha1" -hash = "a2b45db59ba64fd818da72c4a91396470f9d837e" +hash = "b277e82a8dc80a58754b2b5388b57d6211cc10bf" mode = "metadata:curseforge" [update] [update.curseforge] -file-id = 4375475 +file-id = 4522272 project-id = 638417 diff --git a/mods/pams-harvestcraft-2-crops.pw.toml b/mods/pams-harvestcraft-2-crops.pw.toml index c41bfa8..600b76d 100644 --- a/mods/pams-harvestcraft-2-crops.pw.toml +++ b/mods/pams-harvestcraft-2-crops.pw.toml @@ -1,13 +1,13 @@ name = "Pam's HarvestCraft 2 - Crops" -filename = "pamhc2crops-1.19.2-1.0.1.jar" +filename = "pamhc2crops-1.19.2-1.0.2.jar" side = "both" [download] hash-format = "sha1" -hash = "0281236b320a8476d31901edd82041b51994858c" +hash = "9c5afddc10472e6e539822cec9f17eaae47b5db2" mode = "metadata:curseforge" [update] [update.curseforge] -file-id = 4465074 +file-id = 4522368 project-id = 361385 diff --git a/mods/reblured.pw.toml b/mods/reblured.pw.toml new file mode 100644 index 0000000..000b302 --- /dev/null +++ b/mods/reblured.pw.toml @@ -0,0 +1,16 @@ +name = "ReBlured" +filename = "Reblured-1.19.1-1.2.0.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/s4G3ZCcv/versions/4OPjCRWi/Reblured-1.19.1-1.2.0.jar" +hash-format = "sha1" +hash = "5ed4f8be4419f891b8d57347a64dd3a7e3b3505e" + +[option] +optional = true + +[update] +[update.modrinth] +mod-id = "s4G3ZCcv" +version = "4OPjCRWi" diff --git a/mods/scalable-cats-force.pw.toml b/mods/scalable-cats-force.pw.toml new file mode 100644 index 0000000..580e943 --- /dev/null +++ b/mods/scalable-cats-force.pw.toml @@ -0,0 +1,13 @@ +name = "Scalable Cat's Force" +filename = "ScalableCatsForce-2.13.10-build-10-with-library.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/zr0QMQMo/versions/Bdnijx1x/ScalableCatsForce-2.13.10-build-10-with-library.jar" +hash-format = "sha1" +hash = "5aca620e735b96107bb1daf4244347acaed3b8a9" + +[update] +[update.modrinth] +mod-id = "zr0QMQMo" +version = "Bdnijx1x" diff --git a/mods/seamless.pw.toml b/mods/seamless.pw.toml new file mode 100644 index 0000000..001f245 --- /dev/null +++ b/mods/seamless.pw.toml @@ -0,0 +1,13 @@ +name = "Seamless" +filename = "seamless-1.1.0-forge-1.19.2.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/rhyHyQke/versions/KvgFIugE/seamless-1.1.0-forge-1.19.2.jar" +hash-format = "sha1" +hash = "285c180bd0b4fb9610e39536fa62c7f69ddcca1e" + +[update] +[update.modrinth] +mod-id = "rhyHyQke" +version = "KvgFIugE" diff --git a/mods/toms-trading-network.pw.toml b/mods/toms-trading-network.pw.toml index df759f9..f97ba5c 100644 --- a/mods/toms-trading-network.pw.toml +++ b/mods/toms-trading-network.pw.toml @@ -1,13 +1,13 @@ name = "Tom's Trading Network" -filename = "toms_trading_network-1.19-0.1.0.jar" +filename = "toms_trading_network-1.19-0.2.0.jar" side = "both" [download] -url = "https://cdn.modrinth.com/data/x5iQ3NM5/versions/D474LYev/toms_trading_network-1.19-0.1.0.jar" +url = "https://cdn.modrinth.com/data/x5iQ3NM5/versions/S6eiOLw8/toms_trading_network-1.19-0.2.0.jar" hash-format = "sha1" -hash = "630e8903fe3d04391af9d07a0ee9e330bd915b3b" +hash = "b2ad377544e9e2fdf30ee52aa7f6e566acf2b226" [update] [update.modrinth] mod-id = "x5iQ3NM5" -version = "D474LYev" +version = "S6eiOLw8" diff --git a/pack.toml b/pack.toml index 6995332..e91d5db 100644 --- a/pack.toml +++ b/pack.toml @@ -6,7 +6,7 @@ pack-format = "packwiz:1.1.0" [index] file = "index.toml" hash-format = "sha256" -hash = "f0698e6d0399803b317ea0bf2530716e5aae581a48221b87b38e723993d9d24f" +hash = "7f9963c34b29b1680858c8dbf44f9beac1e9633f10f86c95ebeb74b0c7833dd0" [versions] forge = "43.2.8" From 020bd560170bd0ecc99e27e0094ec1495d1d75a0 Mon Sep 17 00:00:00 2001 From: Thomas Hinkle Date: Sat, 6 May 2023 17:52:03 -0500 Subject: [PATCH 19/36] improved our economy and made it so people can (hopefully) open doors. --- CHANGELOG.md | 8 +- config/starterkit/starterkit.txt | 4 +- index.toml | 23 +++- kubejs/client_scripts/hide.js | 20 ++++ kubejs/server_scripts/currency.js | 171 ++-------------------------- mods/plenty-plates.pw.toml | 13 +++ mods/reblured.pw.toml | 1 + mods/the-accurate-backrooms.pw.toml | 9 ++ mods/wallets.pw.toml | 13 +++ pack.toml | 2 +- 10 files changed, 92 insertions(+), 172 deletions(-) create mode 100644 mods/plenty-plates.pw.toml create mode 100644 mods/the-accurate-backrooms.pw.toml create mode 100644 mods/wallets.pw.toml diff --git a/CHANGELOG.md b/CHANGELOG.md index 13df918..cc05f88 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,9 @@ This will be the initial release for the production server. I will avoid adding ## Config Changes -- Modified the starter kit to include the new shop block instead of the old one. +- Modified the starter kit. + - Added the new store block to replace the old one. + - Added the new wallet and removed the old satchel and currency. - Added our updated config for FTBChunks. - Made Create ores (besides zinc) slightly less common. @@ -33,6 +35,8 @@ This will be the initial release for the production server. I will avoid adding - Lets you see light levels by pressing F7. Red = Monsters will spawn anytime, Yellow = Monsters will spawn at night. - Mindful Darkness - Adds a dark mode for Minecraft GUIs. Optional. +- Plenty Plates + - Adds several specialized pressure plates. For example, the obsidian pressure plate only works with players. - ReBlured - Blurs backgrounds when GUIs are open. Optional. - Seamless @@ -41,6 +45,8 @@ This will be the initial release for the production server. I will avoid adding - Adds hats. - Tom's Trading Network - A better trading mod for a server economy. +- Wallets + - Adds a better currency system with denominations and a wallet. - Wavey Capes ### Updates diff --git a/config/starterkit/starterkit.txt b/config/starterkit/starterkit.txt index 1134d48..f27874d 100644 --- a/config/starterkit/starterkit.txt +++ b/config/starterkit/starterkit.txt @@ -9,7 +9,7 @@ 3 : '{Count:1b,id:"minecraft:white_bed"}', 4 : '{Count:1b,id:"solsweetpotato:food_book"}', 5 : '{Count:2b,id:"toms_trading_network:vending_machine"}', -6 : '{Count:1b,id:"thermal:satchel",tag:{ItemInv:{ItemInv:[{Count:20b,Slot:0b,id:"thermal:bronze_coin"}]},RepairCost:0,display:{Name:'{"text":"Wallet"}'}}}', +6 : '{Count:1b,id:"wallets:wallet",tag:{coin_value:100}}', 7 : '{Count:1b,ForgeCaps:{Parent:{Items:[{Count:4b,Slot:0,id:"minecraft:cooked_mutton"},{Count:6b,Slot:1,id:"minecraft:bread"},{Count:8b,Slot:2,id:"minecraft:apple"},{Count:2b,Slot:3,id:"minecraft:cookie"}],Size:5}},id:"solsweetpotato:lunchbag"}', 8 : '{Count:16b,id:"minecraft:torch"}', 9 : '{Count:64b,id:"cgm:basic_bullet"}', @@ -38,4 +38,4 @@ 32 : '', 33 : '', 34 : '', -35 : '', +35 : '', \ No newline at end of file diff --git a/index.toml b/index.toml index ff92dde..cd964c4 100644 --- a/index.toml +++ b/index.toml @@ -66,7 +66,7 @@ hash = "f4f94b6b9dcbbf19a828c842217306169bcff7f9570b81af612b5404bc4bda87" [[files]] file = "config/starterkit/starterkit.txt" -hash = "c3d57b88f8d5217f33736ffc10736137b90bee6f9597835097deef4cbd8355e1" +hash = "95f16b64340c8980823a39b711bbb4a810f26c68f8f58f5c005da796dcacf236" [[files]] file = "config/toastcontrol-common.toml" @@ -94,7 +94,7 @@ hash = "00fd68c7cebeb9d6f09da20fed39c0bdd8e608ed6afaee9f6ef048208f50e86e" [[files]] file = "kubejs/client_scripts/hide.js" -hash = "46555dc2fd7e829686eaf0b24b33a09675bc6d0f1d994a19ab9004d8d6cf0b99" +hash = "2255b7d532be636cb1cc8a6cbbc69cb1afb496623af5fa526b8d5c1fc4a64a07" [[files]] file = "kubejs/server_scripts/balance.js" @@ -106,7 +106,7 @@ hash = "6b956902beb69b0abe652b87a12fc49cd260b10ea2568a9fed6378cdf8bd5d87" [[files]] file = "kubejs/server_scripts/currency.js" -hash = "fdb06bfee31a9cae4bebc3475a0d84344103d1e68f641e8aa81b51f3a878c480" +hash = "a7cb07fa43e9f01ff5472ba08f13483e346b88560d4a2304ffb6f1e64621b367" [[files]] file = "mods/additional-enchanted-miner.pw.toml" @@ -883,6 +883,11 @@ file = "mods/placebo.pw.toml" hash = "cb0af91d7b5f99b46022e3af2ef7e128028f6a2f91feb0a8f4fa22e9556f30b3" metafile = true +[[files]] +file = "mods/plenty-plates.pw.toml" +hash = "d911db93a78ffedcf830ec1d56601f7bba69ef56af027f65ca22f98f7be43891" +metafile = true + [[files]] file = "mods/pluto.pw.toml" hash = "4ccba84a626f957a1e5bbdcc93be31b6b9fc688061f6ba5aacfb43bc4465a562" @@ -920,7 +925,7 @@ metafile = true [[files]] file = "mods/reblured.pw.toml" -hash = "22df3e457b5b70c9ad2e43e745b8106daece24e3be2788e64ff2478dc8876272" +hash = "6e88ae08c4560b5ee52c0112a191d8f173fdcec993f83360c98a47d45b533967" metafile = true [[files]] @@ -1143,6 +1148,11 @@ file = "mods/terrablender.pw.toml" hash = "64036b0bc617a33d904a0e6371ddc7d63896a888b1e0ada1a6eae8f647bb9327" metafile = true +[[files]] +file = "mods/the-accurate-backrooms.pw.toml" +hash = "31c83b9396527bc5cd11a0757d35db98ad32d1fc6912160b0f27183743c3fea7" +metafile = true + [[files]] file = "mods/thermal-cultivation.pw.toml" hash = "f66d3443df1b1d2619234a4e81851ff80c1821eb911307fcbaf52bbdbcfeafe3" @@ -1228,6 +1238,11 @@ file = "mods/visual-workbench.pw.toml" hash = "de92543e67785a10dba40d50fc9deebb1990d19965e0b73b9cd63be55260e62d" metafile = true +[[files]] +file = "mods/wallets.pw.toml" +hash = "0a820dd449f1959628b4e59d6ba087ee21d861cb5450e6296ac9c4e927f3c8df" +metafile = true + [[files]] file = "mods/wavey-capes.pw.toml" hash = "6b8677362d29aa238f5b74aca85267251d776f2fb764cf792109cdbea7a5aecc" diff --git a/kubejs/client_scripts/hide.js b/kubejs/client_scripts/hide.js index f8f71d0..56c20b2 100644 --- a/kubejs/client_scripts/hide.js +++ b/kubejs/client_scripts/hide.js @@ -25,4 +25,24 @@ JEIEvents.hideItems((event) => { event.hide("moguns:hellfire"); event.hide("moguns:taki"); event.hide("moguns:trashcan"); + + event.hide("thermal:press_coin_die"); + event.hide("thermal:dynamo_numismatic"); + event.hide("thermal:tin_coin"); + event.hide("thermal:copper_coin"); + event.hide("thermal:bronze_coin"); + event.hide("thermal:iron_coin"); + event.hide("thermal:gold_coin"); + event.hide("thermal:invar_coin"); + event.hide("thermal:enderium_coin"); + event.hide("thermal:signalum_coin"); + event.hide("thermal:lumium_coin"); + event.hide("thermal:netherite_coin"); + event.hide("thermal:steel_coin"); + event.hide("thermal:rose_gold_coin"); + event.hide("thermal:lead_coin"); + event.hide("thermal:silver_coin"); + event.hide("thermal:nickel_coin"); + event.hide("thermal:electrum_coin"); + event.hide("thermal:constantan_coin"); }); diff --git a/kubejs/server_scripts/currency.js b/kubejs/server_scripts/currency.js index 285bf5a..3b518c4 100644 --- a/kubejs/server_scripts/currency.js +++ b/kubejs/server_scripts/currency.js @@ -15,6 +15,13 @@ ServerEvents.recipes((event) => { event.remove({ id: "thermal:signalum_coin" }); event.remove({ id: "thermal:lumium_coin" }); event.remove({ id: "thermal:netherite_coin" }); + event.remove({ id: "thermal:steel_coin" }); + event.remove({ id: "thermal:rose_gold_coin" }); + event.remove({ id: "thermal:lead_coin" }); + event.remove({ id: "thermal:silver_coin" }); + event.remove({ id: "thermal:nickel_coin" }); + event.remove({ id: "thermal:electrum_coin" }); + event.remove({ id: "thermal:constantan_coin" }); // Remove Recipes from Create Deco coins to avoid confusion event.remove({ output: "createdeco:brass_coin" }); @@ -31,168 +38,4 @@ ServerEvents.recipes((event) => { event.remove({ output: "createdeco:netherite_coinstack" }); event.remove({ output: "createdeco:zinc_coin" }); event.remove({ output: "createdeco:zinc_coinstack" }); - - // Recipes for combining coins - event.recipes.create.mixing("thermal:copper_coin", [ - "thermal:tin_coin", - "thermal:tin_coin", - "thermal:tin_coin", - "thermal:tin_coin", - "thermal:tin_coin", - "thermal:tin_coin", - "thermal:tin_coin", - "thermal:tin_coin", - "thermal:tin_coin", - "thermal:tin_coin", - ]); - - event.recipes.create.mixing("thermal:bronze_coin", [ - "thermal:copper_coin", - "thermal:copper_coin", - "thermal:copper_coin", - "thermal:copper_coin", - "thermal:copper_coin", - "thermal:copper_coin", - "thermal:copper_coin", - "thermal:copper_coin", - "thermal:copper_coin", - "thermal:copper_coin", - ]); - - event.recipes.create.mixing("thermal:iron_coin", [ - "thermal:bronze_coin", - "thermal:bronze_coin", - "thermal:bronze_coin", - "thermal:bronze_coin", - "thermal:bronze_coin", - "thermal:bronze_coin", - "thermal:bronze_coin", - "thermal:bronze_coin", - "thermal:bronze_coin", - "thermal:bronze_coin", - ]); - - event.recipes.create.mixing("thermal:gold_coin", [ - "thermal:iron_coin", - "thermal:iron_coin", - "thermal:iron_coin", - "thermal:iron_coin", - "thermal:iron_coin", - "thermal:iron_coin", - "thermal:iron_coin", - "thermal:iron_coin", - "thermal:iron_coin", - "thermal:iron_coin", - ]); - - event.recipes.create.mixing("thermal:invar_coin", [ - "thermal:gold_coin", - "thermal:gold_coin", - "thermal:gold_coin", - "thermal:gold_coin", - "thermal:gold_coin", - "thermal:gold_coin", - "thermal:gold_coin", - "thermal:gold_coin", - "thermal:gold_coin", - "thermal:gold_coin", - ]); - - event.recipes.create.mixing("thermal:enderium_coin", [ - "thermal:invar_coin", - "thermal:invar_coin", - "thermal:invar_coin", - "thermal:invar_coin", - "thermal:invar_coin", - "thermal:invar_coin", - "thermal:invar_coin", - "thermal:invar_coin", - "thermal:invar_coin", - "thermal:invar_coin", - ]); - - event.recipes.create.mixing("thermal:signalum_coin", [ - "thermal:enderium_coin", - "thermal:enderium_coin", - "thermal:enderium_coin", - "thermal:enderium_coin", - "thermal:enderium_coin", - "thermal:enderium_coin", - "thermal:enderium_coin", - "thermal:enderium_coin", - "thermal:enderium_coin", - "thermal:enderium_coin", - ]); - - event.recipes.create.mixing("thermal:lumium_coin", [ - "thermal:signalum_coin", - "thermal:signalum_coin", - "thermal:signalum_coin", - "thermal:signalum_coin", - "thermal:signalum_coin", - "thermal:signalum_coin", - "thermal:signalum_coin", - "thermal:signalum_coin", - "thermal:signalum_coin", - "thermal:signalum_coin", - ]); - - event.recipes.create.mixing("thermal:netherite_coin", [ - "thermal:lumium_coin", - "thermal:lumium_coin", - "thermal:lumium_coin", - "thermal:lumium_coin", - "thermal:lumium_coin", - "thermal:lumium_coin", - "thermal:lumium_coin", - "thermal:lumium_coin", - "thermal:lumium_coin", - "thermal:lumium_coin", - ]); - - // Recipes for breaking down coins - event.recipes.create.crushing( - ["10x thermal:tin_coin"], - "thermal:copper_coin" - ); - - event.recipes.create.crushing( - ["10x thermal:copper_coin"], - "thermal:bronze_coin" - ); - - event.recipes.create.crushing( - ["10x thermal:bronze_coin"], - "thermal:iron_coin" - ); - - event.recipes.create.crushing( - ["10x thermal:iron_coin"], - "thermal:gold_coin" - ); - - event.recipes.create.crushing( - ["10x thermal:gold_coin"], - "thermal:invar_coin" - ); - - event.recipes.create.crushing( - ["10x thermal:invar_coin"], - "thermal:enderium_coin" - ); - - event.recipes.create.crushing( - ["10x thermal:enderium_coin"], - "thermal:signalum_coin" - ); - - event.recipes.create.crushing( - ["10x thermal:signalum_coin"], - "thermal:lumium_coin" - ); - - event.recipes.create.crushing( - ["10x thermal:lumium_coin"], - "thermal:netherite_coin" - ); }); diff --git a/mods/plenty-plates.pw.toml b/mods/plenty-plates.pw.toml new file mode 100644 index 0000000..7db777e --- /dev/null +++ b/mods/plenty-plates.pw.toml @@ -0,0 +1,13 @@ +name = "Plenty Plates" +filename = "PlentyPlates-v4.0.0-1.19.2-Forge.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/VmcdxJxh/versions/YDH4B7Nk/PlentyPlates-v4.0.0-1.19.2-Forge.jar" +hash-format = "sha1" +hash = "d4b4a0858eabaa36d46e25e144e9179b3727638c" + +[update] +[update.modrinth] +mod-id = "VmcdxJxh" +version = "YDH4B7Nk" diff --git a/mods/reblured.pw.toml b/mods/reblured.pw.toml index 000b302..6081dbb 100644 --- a/mods/reblured.pw.toml +++ b/mods/reblured.pw.toml @@ -9,6 +9,7 @@ hash = "5ed4f8be4419f891b8d57347a64dd3a7e3b3505e" [option] optional = true +description = "Blurs the background when you have an inventory open." [update] [update.modrinth] diff --git a/mods/the-accurate-backrooms.pw.toml b/mods/the-accurate-backrooms.pw.toml new file mode 100644 index 0000000..e810b14 --- /dev/null +++ b/mods/the-accurate-backrooms.pw.toml @@ -0,0 +1,9 @@ +name = "The Accurate Backrooms" +filename = "v2.0.1accuratebackrooms_forge43.2.8-mc1.19.2.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "2767b3ebe94bb7e26b5bb02b27f88f94a485ce89" +url = "https://github.com/razage/mctheactualbackrooms/raw/master/v2.0.1accuratebackrooms_forge43.2.8-mc1.19.2.jar" + diff --git a/mods/wallets.pw.toml b/mods/wallets.pw.toml new file mode 100644 index 0000000..660ad3a --- /dev/null +++ b/mods/wallets.pw.toml @@ -0,0 +1,13 @@ +name = "Wallets" +filename = "Wallets-1.19.2-1.0.0.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/DVGptEs0/versions/NutUETS4/Wallets-1.19.2-1.0.0.jar" +hash-format = "sha1" +hash = "0920923d4ce3beca25490c4a1dd8bde376662267" + +[update] +[update.modrinth] +mod-id = "DVGptEs0" +version = "NutUETS4" diff --git a/pack.toml b/pack.toml index e91d5db..9c79484 100644 --- a/pack.toml +++ b/pack.toml @@ -6,7 +6,7 @@ pack-format = "packwiz:1.1.0" [index] file = "index.toml" hash-format = "sha256" -hash = "7f9963c34b29b1680858c8dbf44f9beac1e9633f10f86c95ebeb74b0c7833dd0" +hash = "0c651902b4da35a9ffb16db8e7b5b3bee73ee220572c99c862c19a0457bc0301" [versions] forge = "43.2.8" From 645d2f17ae9f311ce1e2b9ad1f32acad26ccec9a Mon Sep 17 00:00:00 2001 From: Thomas Hinkle Date: Sun, 7 May 2023 12:09:55 -0500 Subject: [PATCH 20/36] modified some kubejs stuff --- kubejs/client_scripts/hide.js | 86 +++++++++++++++++++++++++++++++++++ 1 file changed, 86 insertions(+) diff --git a/kubejs/client_scripts/hide.js b/kubejs/client_scripts/hide.js index 56c20b2..c866c79 100644 --- a/kubejs/client_scripts/hide.js +++ b/kubejs/client_scripts/hide.js @@ -2,6 +2,92 @@ // Hiding items from JEI that can't or shouldn't be crafted JEIEvents.hideItems((event) => { + event.hide("accbackrooms:yellowed_wallpaper"); + event.hide("accbackrooms:yellowed_dotted_wallpaper"); + event.hide("accbackrooms:yellowed_lined_wallpaper"); + event.hide("accbackrooms:damp_yellow_carpet"); + event.hide("accbackrooms:stained_yellow_carpet"); + event.hide("accbackrooms:office_ceiling_tile"); + event.hide("accbackrooms:light_block"); + event.hide("accbackrooms:light_block_off"); + event.hide("accbackrooms:repainted_white_wall"); + event.hide("accbackrooms:dry_red_carpet"); + event.hide("accbackrooms:red_door"); + event.hide("accbackrooms:parking_white_concrete"); + event.hide("accbackrooms:parking_white_concrete_brownline"); + event.hide("accbackrooms:parking_white_concrete_f"); + event.hide("accbackrooms:packing_grey_concrete"); + event.hide("accbackrooms:parking_grey_concrete_slab"); + event.hide("accbackrooms:wet_parking_grey_concrete"); + event.hide("accbackrooms:supply_crate"); + event.hide("accbackrooms:funny_level_1"); + event.hide("accbackrooms:level_1_door"); + event.hide("accbackrooms:level_1_locked_door"); + event.hide("accbackrooms:tube_light_imitation"); + event.hide("accbackrooms:tube_light_off"); + event.hide("accbackrooms:tube_light_vertical_block"); + event.hide("accbackrooms:tube_light_vertical_off"); + event.hide("accbackrooms:ceiling_pipe"); + event.hide("accbackrooms:double_ceiling_pipe"); + event.hide("accbackrooms:crossing_ceiling_pipe"); + event.hide("accbackrooms:weathered_gray_concrete"); + event.hide("accbackrooms:smoth_gray_concrete"); + event.hide("accbackrooms:level_2_stairs"); + event.hide("accbackrooms:level_2_vent"); + event.hide("accbackrooms:level_2_grill"); + event.hide("accbackrooms:connectable_pipe_0000"); + event.hide("accbackrooms:level_2_pipes"); + event.hide("accbackrooms:left_pipes"); + event.hide("accbackrooms:right_pipes"); + event.hide("accbackrooms:ceiling_pipes"); + event.hide("accbackrooms:orange_bricks"); + event.hide("accbackrooms:dusty_concrete_tile"); + event.hide("accbackrooms:gray_concrete"); + event.hide("accbackrooms:level_3_ironbars"); + event.hide("accbackrooms:ironbars_door"); + event.hide("accbackrooms:traffic_cone_block"); + event.hide("accbackrooms:level_3_door"); + event.hide("accbackrooms:office_wall"); + event.hide("accbackrooms:office_wall_baseboard"); + event.hide("accbackrooms:dark_carpet"); + event.hide("accbackrooms:level_19_block"); + event.hide("accbackrooms:empty_memory_jar"); + event.hide("accbackrooms:red_memory_jar"); + event.hide("accbackrooms:yellow_memory_jar"); + event.hide("accbackrooms:green_memory_jar"); + event.hide("accbackrooms:blue_memory_jar"); + event.hide("accbackrooms:purple_memory_jar"); + event.hide("accbackrooms:pink_memory_jar"); + event.hide("accbackrooms:black_memory_jar"); + event.hide("accbackrooms:original_almond_water"); + event.hide("accbackrooms:coconut_almond_water"); + event.hide("accbackrooms:mintlicorice_almond_water"); + event.hide("accbackrooms:levelkey"); + event.hide("accbackrooms:computer"); + event.hide("accbackrooms:squirt_gun"); + event.hide("accbackrooms:squirt_gun_tank"); + event.hide("accbackrooms:firesalt"); + event.hide("accbackrooms:firesalt_cluster"); + event.hide("accbackrooms:large_firesalt_bud"); + event.hide("accbackrooms:medium_firesalt_bud"); + event.hide("accbackrooms:small_firesalt_bud"); + event.hide("accbackrooms:smiler_spawn_egg"); + event.hide("accbackrooms:female_deathmoth_spawn_egg"); + event.hide("accbackrooms:male_deathmoth_spawn_egg"); + event.hide("accbackrooms:clump_spawn_egg"); + event.hide("accbackrooms:duller_spawn_egg"); + event.hide("accbackrooms:hound_spawn_egg"); + event.hide("accbackrooms:adult_faceling_spawn_egg"); + event.hide("accbackrooms:old_man_faceling_spawn_egg"); + event.hide("accbackrooms:child_faceling_spawn_egg"); + event.hide("accbackrooms:skin_stealer_spawn_egg"); + event.hide("accbackrooms:burster_spawn_egg"); + event.hide("accbackrooms:wretch_spawn_egg"); + event.hide("accbackrooms:viscous_black_liquid_bucket"); + event.hide("accbackrooms:parking_grey_concrete"); + event.hide("accbackrooms:smooth_gray_concrete"); + event.hide("accbackrooms:pink_dress_faceling_spawn_egg"); + event.hide("createdeco:brass_coin"); event.hide("createdeco:brass_coinstack"); event.hide("createdeco:cast_iron_coin"); From 28a66647ea96d0a076ea14990385f4f395244697 Mon Sep 17 00:00:00 2001 From: Thomas Hinkle Date: Sun, 7 May 2023 15:54:47 -0500 Subject: [PATCH 21/36] Massive balance patch for QuarryPlus --- CHANGELOG.md | 4 +- config/quarryplus-common.toml | 164 +++++++++++++++++++++++++++++++ index.toml | 19 +++- kubejs/client_scripts/hide.js | 19 ++++ kubejs/server_scripts/balance.js | 78 +++++++++++++-- mods/extreme-reactors.pw.toml | 6 +- mods/john_mod_reborn.pw.toml | 13 +++ mods/sophisticated-core.pw.toml | 6 +- mods/zerocore.pw.toml | 6 +- pack.toml | 2 +- 10 files changed, 294 insertions(+), 23 deletions(-) create mode 100644 config/quarryplus-common.toml create mode 100644 mods/john_mod_reborn.pw.toml diff --git a/CHANGELOG.md b/CHANGELOG.md index cc05f88..5e53343 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -62,6 +62,7 @@ This will be the initial release for the production server. I will avoid adding - Create Crafts and Additions 1.19.2-20230411a -> 1.19.2-20230426a - Create Deco 1.3.1 -> 1.3.2 - Curios API 5.1.4.0 -> 5.1.4.1 +- Extreme Reactors 2.0.62 -> 2.0.63 - FastWorkbench 7.1.1 -> 7.1.2 - In Control! 7.1.3 -> 7.1.5 - JourneyMap 5.9.5 -> 5.9.6 @@ -75,8 +76,9 @@ This will be the initial release for the production server. I will avoid adding - RFTools Builder 5.2.6 -> 5.2.8 - Saturn 0.0.3 -> 0.0.4 - SeasonHUD 1.4.12 -> 1.4.14 -- Sophisticated Core 0.5.51.251 -> 0.5.53.257 +- Sophisticated Core 0.5.51.251 -> 0.5.54.261 - Tom's Trading Network 0.1.0 -> 0.2.0 +- ZeroCore 2 2.1.33 -> 2.1.34 # 1.0.19 diff --git a/config/quarryplus-common.toml b/config/quarryplus-common.toml new file mode 100644 index 0000000..58cdba1 --- /dev/null +++ b/config/quarryplus-common.toml @@ -0,0 +1,164 @@ + +#QuarryPlus Setting +[common] + #The top of Nether + #Range: -256 ~ 256 + netherTop = 127 + #debug mode + debug = false + #no energy + noEnergy = false + #Whether quarry converts deepslate ore to normal ore. + convertDeepslateOres = false + #Spawner Controller Blacklist + spawnerBlacklist = ["minecraft:ender_dragon", "minecraft:wither", "minecraft:area_effect_cloud", "minecraft:item", "minecraft:player"] + #The amount of energy[FE] that Solid Fuel Quarry generates in a tick. + #Range: 0.0 ~ 100.0 + sfqEnergy = 2.0 + #Remove common materials(Stone, Dirt, Grass, Sand, etc.) obtained by Chunk Destroyer + removeCommonMaterialsByCD = true + #Remove MarkerPlus guide line if player is too far from the marker. + reduceMarkerGuideLineIfPlayerIsFar = false + #Remove adjacent frames when quarry is removed. + removeFrameAfterQuarryIsRemoved = true + #Allow quarries to work in claimed chunk(FTB Chunks). + allowWorkInClaimedChunkByFBTChunks = true + #The range limit(unit: blocks) of ChunkDestroyer. Set -1 or 0 to remove limitation. + #Range: > -1 + chunkDestroyerLimit = -1 + #True to allow pipes to extract items in WorkbenchPlus + allowWorkbenchExtraction = false + #Use simple chunk load function. + #If you have other chunk load system, please disable this and use other mods. + enableChunkLoader = false + #Trace quarry work + logAllQuarryWork = false + +#QuarryPlus Machines. Set true to enable machine or item. +[machines] + adv_pump = true + adv_quarry = false + book_mover = true + exp_module = true + exp_pump = true + filler = true + filler_module = true + filter_module = true + fuel_module_normal = false + mini_quarry = false + mining_well = true + mover = true + placer_plus = true + pump_module = true + pump_plus = true + quarry = true + remote_placer = false + remove_bedrock_module = false + replacer = false + replacer_module = false + solid_fuel_quarry = false + spawner_controller = false + workbench = false + +#Power settings of each machines +[powers] + + [powers.mini_quarry] + #Range: 0.0 ~ 1.0E9 + maxEnergy = 1000.0 + #Range: 0.0 ~ 1.0E9 + breakBlockBase = 20.0 + + [powers.solid_fuel_quarry] + #Range: 0.0 ~ 1.0E9 + maxEnergy = 1000.0 + #Range: 0.0 ~ 1.0E9 + makeFrame = 15.0 + #Range: 0.0 ~ 1.0E9 + breakBlockBase = 25.0 + #Range: 0.0 ~ 1.0E9 + breakBlockFluid = 125.0 + #Range: 0.0 ~ 1.0E9 + moveHeadBase = 1.0 + #Range: 0.0 ~ 1.0E9 + expCollect = 2.5 + #Range: 0.0 ~ 1.0E9 + efficiencyCoefficient = 1.5848931924611136 + #Range: 0.0 ~ 1.0E9 + breakEfficiencyCoefficient = 1.379729661461215 + #Range: 0.0 ~ 1.0E9 + breakFortuneCoefficient = 1.5874010519681996 + #Range: 0.0 ~ 1.0E9 + breakSilktouchCoefficient = 4.0 + + [powers.adv_quarry] + #Range: 0.0 ~ 1.0E9 + maxEnergy = 50000.0 + #Range: 0.0 ~ 1.0E9 + makeFrame = 15.0 + #Range: 0.0 ~ 1.0E9 + breakBlockBase = 25.0 + #Range: 0.0 ~ 1.0E9 + breakBlockFluid = 125.0 + #Range: 0.0 ~ 1.0E9 + moveHeadBase = 1.0 + #Range: 0.0 ~ 1.0E9 + expCollect = 2.5 + #Range: 0.0 ~ 1.0E9 + efficiencyCoefficient = 1.5848931924611136 + #Range: 0.0 ~ 1.0E9 + breakEfficiencyCoefficient = 1.379729661461215 + #Range: 0.0 ~ 1.0E9 + breakFortuneCoefficient = 1.5874010519681996 + #Range: 0.0 ~ 1.0E9 + breakSilktouchCoefficient = 4.0 + + [powers.filler] + #Range: 0.0 ~ 1.0E9 + maxEnergy = 1000.0 + #Range: 0.0 ~ 1.0E9 + breakBlockBase = 15.0 + + [powers.book_mover] + #Range: 0.0 ~ 1.0E9 + maxEnergy = 50000.0 + + [powers.workbench] + #Range: 0.0 ~ 1.0E9 + maxEnergy = 5.0 + + [powers.quarry] + #Range: 0.0 ~ 1.0E9 + maxEnergy = 10000.0 + #Range: 0.0 ~ 1.0E9 + makeFrame = 15.0 + #Range: 0.0 ~ 1.0E9 + breakBlockBase = 25.0 + #Range: 0.0 ~ 1.0E9 + breakBlockFluid = 125.0 + #Range: 0.0 ~ 1.0E9 + moveHeadBase = 1.0 + #Range: 0.0 ~ 1.0E9 + expCollect = 2.5 + #Range: 0.0 ~ 1.0E9 + efficiencyCoefficient = 1.5848931924611136 + #Range: 0.0 ~ 1.0E9 + breakEfficiencyCoefficient = 1.379729661461215 + #Range: 0.0 ~ 1.0E9 + breakFortuneCoefficient = 1.5874010519681996 + #Range: 0.0 ~ 1.0E9 + breakSilktouchCoefficient = 4.0 + +#IC2 integration +[ic2-integration] + #The rate to convert EU to nano FE. Default(4,000,000,000) is the rate of 1 EU = 4 FE + #Range: 1 ~ 9223372036854775807 + conversionRate = 4000000000 + +#Enchantments. Defines enchantments machines can accept. +[enchantments] + quarry = ["minecraft:efficiency", "minecraft:unbreaking", "minecraft:fortune", "minecraft:silk_touch"] + adv_quarry = ["minecraft:efficiency", "minecraft:unbreaking", "minecraft:fortune", "minecraft:silk_touch"] + mini_quarry = ["minecraft:efficiency", "minecraft:unbreaking"] + adv_pump = ["minecraft:efficiency", "minecraft:unbreaking", "minecraft:fortune"] + diff --git a/index.toml b/index.toml index cd964c4..053b629 100644 --- a/index.toml +++ b/index.toml @@ -64,6 +64,10 @@ hash = "d98a950b91ff51ef3ac2b3c73a7ea48eb30ec56dd42668a1891f8dffbc690ab5" file = "config/moremekanismprocessing-common.toml" hash = "f4f94b6b9dcbbf19a828c842217306169bcff7f9570b81af612b5404bc4bda87" +[[files]] +file = "config/quarryplus-common.toml" +hash = "3650fcce5b80ac2b0b36c299d05616990c72579fc9ca779c1c50c76396e2a1dc" + [[files]] file = "config/starterkit/starterkit.txt" hash = "95f16b64340c8980823a39b711bbb4a810f26c68f8f58f5c005da796dcacf236" @@ -94,11 +98,11 @@ hash = "00fd68c7cebeb9d6f09da20fed39c0bdd8e608ed6afaee9f6ef048208f50e86e" [[files]] file = "kubejs/client_scripts/hide.js" -hash = "2255b7d532be636cb1cc8a6cbbc69cb1afb496623af5fa526b8d5c1fc4a64a07" +hash = "14a77b647bc3b65ba673b4430efea6930e83e30eee1525fc82e2722be9dc57db" [[files]] file = "kubejs/server_scripts/balance.js" -hash = "84d823bde19f065e4f25d4d57140133ca73ad5ce140283d86998e0175364cb35" +hash = "b3853c1c8e1445cc96d5ba246440affd7e6a8ebd7e0f31f767cbd8b6f6edb5fc" [[files]] file = "kubejs/server_scripts/banned.js" @@ -440,7 +444,7 @@ metafile = true [[files]] file = "mods/extreme-reactors.pw.toml" -hash = "fa17748369c50dd013fed14cd77891c32a3098688b778af281b227aad41b63f6" +hash = "a5862f6a5ca9ab9fc36150e0adbdc3e8cca375e6c3187087477168f2bb7142a0" metafile = true [[files]] @@ -583,6 +587,11 @@ file = "mods/jei.pw.toml" hash = "ec517326311870553f501b1cea0a453b67419a2663a3d3c4eb3422a0eb21f67c" metafile = true +[[files]] +file = "mods/john_mod_reborn.pw.toml" +hash = "58acfa07a6918387d574fa62f270aca7c6347e5c3d13aa3277beabbbb5404b78" +metafile = true + [[files]] file = "mods/journeymap-integration.pw.toml" hash = "f8c78f9eef3ce31cc182a1d0d12c93c2e5258ca83e28fea0ec2a2fba999f9a9c" @@ -1095,7 +1104,7 @@ metafile = true [[files]] file = "mods/sophisticated-core.pw.toml" -hash = "7359a39beba9c2b70ca5965e42b88b9a4d3de56cefbf860f745a4898a71ca642" +hash = "7ad4c554d2d59b0c52e48670371695a63f087f85cfaed4d37477818260d600dc" metafile = true [[files]] @@ -1255,7 +1264,7 @@ metafile = true [[files]] file = "mods/zerocore.pw.toml" -hash = "3edcfebe2285c4c5ce8c294047e344d06bbe16b60eb19270fbcef6ca0444b422" +hash = "69c88de3ecc6dc7b90ad1b3e87dc428cf88676b350364d8304eeb3480a2a41b3" metafile = true [[files]] diff --git a/kubejs/client_scripts/hide.js b/kubejs/client_scripts/hide.js index c866c79..74243c2 100644 --- a/kubejs/client_scripts/hide.js +++ b/kubejs/client_scripts/hide.js @@ -105,6 +105,8 @@ JEIEvents.hideItems((event) => { event.hide("industrialforegoing:infinity_nuke"); + event.hide("mekanism:digital_miner"); // It just can't keep up with other options. Balancing its cost is annoying. + event.hide("moguns:blue_heat"); event.hide("moguns:garbage"); event.hide("moguns:glockest_glock"); @@ -112,6 +114,23 @@ JEIEvents.hideItems((event) => { event.hide("moguns:taki"); event.hide("moguns:trashcan"); + event.hide("quarryplus:workbench"); // This is very expensive for how slow the quarry is. + event.hide("quarryplus:remote_placer"); + event.hide("quarryplus:spawn_controller"); + event.hide("quarryplus:remove_bedrock_module"); + event.hide("quarryplus:mini_quarry"); // This isn't OP, but it's very confusing to use. + event.hide("quarryplus:adv_quarry"); // This is very OP. It mines all the way to bedrock for an entire chunk in seconds if you have the power. + event.hide("quarryplus:spawner_controller"); + event.hide("quarryplus:dummy"); + event.hide("quarryplus:dummy_replacer"); + event.hide("quarryplus:replacer_module"); + event.hide("quarryplus:replacer"); + event.hide("quarryplus:frame"); + event.hide("quarryplus:status_checker"); // Doesn't seem to work in the current version + event.hide("quarryplus:y_setter"); // Doesn't seem to work in the current version + event.hide("quarryplus:solid_fuel_quarry"); + event.hide("quarryplus:fuel_module_normal"); + event.hide("thermal:press_coin_die"); event.hide("thermal:dynamo_numismatic"); event.hide("thermal:tin_coin"); diff --git a/kubejs/server_scripts/balance.js b/kubejs/server_scripts/balance.js index dcacfcb..f26b863 100644 --- a/kubejs/server_scripts/balance.js +++ b/kubejs/server_scripts/balance.js @@ -17,12 +17,76 @@ ServerEvents.recipes((event) => { }); // Mekanism Digital Miner - event.shaped("mekanism:digital_miner", ["ACA", "SRS", "ETE"], { - A: "mekanism:alloy_atomic", - C: "mekanism:elite_control_circuit", - S: "mekanism:logistical_sorter", - R: "mekanism:advanced_control_circuit", - E: "minecraft:ender_pearl", - T: "mekanism:steel_casing", + // event.shaped("mekanism:digital_miner", ["ACA", "SRS", "ETE"], { + // A: "mekanism:alloy_atomic", + // C: "mekanism:elite_control_circuit", + // S: "mekanism:logistical_sorter", + // R: "thermal:diamond_gear", + // E: "minecraft:ender_pearl", + // T: "mekanism:steel_casing", + // }); + + // QuarryPlus + event.shaped("quarryplus:marker", ["L", "T"], { + L: "minecraft:lapis_lazuli", + T: "minecraft:redstone_torch", + }); + event.shaped("quarryplus:filter_module", ["CGC", "GTG", "CGC"], { + C: "thermal:copper_nugget", + G: "minecraft:glass_pane", + T: "trashcans:item_trash_can", + }); + event.shaped("quarryplus:mining_well", ["DFD", "SMS", "GPG"], { + D: "thermal:dynamo_stirling", + F: "thermal:machine_furnace", + S: "thermal:redstone_servo", + M: "thermal:machine_frame", + G: "redstone_arsenal:flux_gear", + P: "minecraft:diamond_pickaxe", + }); + event.shaped("quarryplus:quarry", ["IPI", "GDG", "IFI"], { + I: "thermal:steel_ingot", + P: "minecraft:ender_pearl", + G: "redstone_arsenal:flux_gear", + D: "thermal:diamond_gear", + F: "thermal:flux_drill", + }); + event.shaped("quarryplus:mover", [" E ", "OPO", "OOO"], { + E: "minecraft:enchanting_table", + O: "minecraft:obsidian", + P: "minecraft:ender_pearl", + }); + event.shaped("quarryplus:book_mover", ["LWL", "BMB", "OOO"], { + L: "minecraft:lapis_lazuli", + W: "minecraft:writable_book", + B: "minecraft:bookshelf", + M: "quarryplus:mover", + O: "minecraft:obsidian", + }); + event.shaped("quarryplus:filler", ["DID", "CMC", "DDD"], { + D: "minecraft:dirt", + I: "thermal:iron_gear", + C: "thermal:copper_gear", + M: "thermal:machine_frame", + }); + event.shaped("quarryplus:pump_plus", ["RRR", "PMP", "GPG"], { + R: "minecraft:redstone", + P: "create:fluid_pipe", + M: "thermal:machine_frame", + G: "thermal:iron_gear", + }); + event.shaped("quarryplus:adv_pump", ["EEE", "SPS", "IFI"], { + E: "minecraft:emerald", + S: "thermal:redstone_servo", + P: "quarryplus:pump_plus", + I: "thermal:invar_gear", + F: "pipez:fluid_pipe", + }); + event.shaped("quarryplus:exp_pump", ["EEE", "SPS", "BFB"], { + E: "minecraft:emerald", + S: "thermal:redstone_servo", + P: "quarryplus:pump_plus", + B: "thermal:bronze_gear", + F: "create:fluid_pipe", }); }); diff --git a/mods/extreme-reactors.pw.toml b/mods/extreme-reactors.pw.toml index d38ef5c..1d4daf9 100644 --- a/mods/extreme-reactors.pw.toml +++ b/mods/extreme-reactors.pw.toml @@ -1,13 +1,13 @@ name = "Extreme Reactors" -filename = "ExtremeReactors2-1.19.2-2.0.62.jar" +filename = "ExtremeReactors2-1.19.2-2.0.63.jar" side = "both" [download] hash-format = "sha1" -hash = "c2dbe5f8f3680774f3eac319f12a6e9d4e61e5d9" +hash = "7f13e9125882c7a4c8ed931f92bf4f4dcc5fceba" mode = "metadata:curseforge" [update] [update.curseforge] -file-id = 4417968 +file-id = 4526683 project-id = 250277 diff --git a/mods/john_mod_reborn.pw.toml b/mods/john_mod_reborn.pw.toml new file mode 100644 index 0000000..dc7c0a1 --- /dev/null +++ b/mods/john_mod_reborn.pw.toml @@ -0,0 +1,13 @@ +name = "The John Mod Reborn" +filename = "John_Mod_Reborn_1.0.1_mc1.19.2.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/wbFL8rKi/versions/5s1OOXnW/John_Mod_Reborn_1.0.1_mc1.19.2.jar" +hash-format = "sha1" +hash = "a36c5fa337595c95836235c284bec242d987adb1" + +[update] +[update.modrinth] +mod-id = "wbFL8rKi" +version = "5s1OOXnW" diff --git a/mods/sophisticated-core.pw.toml b/mods/sophisticated-core.pw.toml index b7551ca..db5605d 100644 --- a/mods/sophisticated-core.pw.toml +++ b/mods/sophisticated-core.pw.toml @@ -1,13 +1,13 @@ name = "Sophisticated Core" -filename = "sophisticatedcore-1.19.2-0.5.53.257.jar" +filename = "sophisticatedcore-1.19.2-0.5.54.261.jar" side = "both" [download] hash-format = "sha1" -hash = "ca80f7c52c24079c9e5b2abf44aa232a2d44fd2f" +hash = "1ab9729035345c1604aa12706c8d8a4a83b90d3c" mode = "metadata:curseforge" [update] [update.curseforge] -file-id = 4520497 +file-id = 4525667 project-id = 618298 diff --git a/mods/zerocore.pw.toml b/mods/zerocore.pw.toml index 8710949..7ee0b75 100644 --- a/mods/zerocore.pw.toml +++ b/mods/zerocore.pw.toml @@ -1,13 +1,13 @@ name = "ZeroCore 2" -filename = "ZeroCore2-1.19.2-2.1.33.jar" +filename = "ZeroCore2-1.19.2-2.1.34.jar" side = "both" [download] hash-format = "sha1" -hash = "1fd3de0955a20c31da8ddb58ad1d47f2ea70a7c6" +hash = "331e04cc45f0b7a736d59f5c827aac3d1fae81b5" mode = "metadata:curseforge" [update] [update.curseforge] -file-id = 4485324 +file-id = 4526681 project-id = 247921 diff --git a/pack.toml b/pack.toml index 9c79484..b666d23 100644 --- a/pack.toml +++ b/pack.toml @@ -6,7 +6,7 @@ pack-format = "packwiz:1.1.0" [index] file = "index.toml" hash-format = "sha256" -hash = "0c651902b4da35a9ffb16db8e7b5b3bee73ee220572c99c862c19a0457bc0301" +hash = "1eebd0df73ab3991876a7072d49dc3d73655b9f374fb394292712459eef1a18d" [versions] forge = "43.2.8" From 12b7375fe842698da5eb3db0ae434ebbff92a261 Mon Sep 17 00:00:00 2001 From: Thomas Hinkle Date: Mon, 8 May 2023 12:46:52 -0500 Subject: [PATCH 22/36] Added tesseracts from the old days. Will be modifying its recipe later. --- CHANGELOG.md | 7 ++++++- index.toml | 18 ++++++++++++++---- mods/colorful-hearts.pw.toml | 13 +++++++++++++ mods/createaddition.pw.toml | 6 +++--- mods/spawn-animations.pw.toml | 8 ++++---- mods/supermartijn642s-config-lib.pw.toml | 8 ++++---- mods/supermartijn642s-core-lib.pw.toml | 8 ++++---- mods/tesseract.pw.toml | 13 +++++++++++++ pack.toml | 2 +- 9 files changed, 62 insertions(+), 21 deletions(-) create mode 100644 mods/colorful-hearts.pw.toml create mode 100644 mods/tesseract.pw.toml diff --git a/CHANGELOG.md b/CHANGELOG.md index 5e53343..c760658 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -31,6 +31,8 @@ This will be the initial release for the production server. I will avoid adding - Automatically swaps to the correct tool for breaking the block if it's in your hotbar. - Chunky - Allows OPs to pre-generate chunks. +- Colorful Hearts + - Layers colored hearts over your health instead of displaying multiple rows of hearts. - Light Overlay - Lets you see light levels by pressing F7. Red = Monsters will spawn anytime, Yellow = Monsters will spawn at night. - Mindful Darkness @@ -43,6 +45,8 @@ This will be the initial release for the production server. I will avoid adding - Makes some textures of blocks placed next to each other "seamless". For example, beds, doors, pistons, and large plants. Might not work with modded items. - Simple Hats - Adds hats. +- Tesseracts + - Adds a block that can transport power, items, and fluids wirelessly over any distance. It even works between dimensions. - Tom's Trading Network - A better trading mod for a server economy. - Wallets @@ -59,7 +63,7 @@ This will be the initial release for the production server. I will avoid adding - Connectivity 3.5 -> 4.2 - Cooking for Blockheads 13.3.1 -> 13.3.2 - Crafting Tweaks 15.1.6 -> 15.1.7 -- Create Crafts and Additions 1.19.2-20230411a -> 1.19.2-20230426a +- Create Crafts and Additions 1.19.2-20230411a -> 1.19.2-20230507a - Create Deco 1.3.1 -> 1.3.2 - Curios API 5.1.4.0 -> 5.1.4.1 - Extreme Reactors 2.0.62 -> 2.0.63 @@ -77,6 +81,7 @@ This will be the initial release for the production server. I will avoid adding - Saturn 0.0.3 -> 0.0.4 - SeasonHUD 1.4.12 -> 1.4.14 - Sophisticated Core 0.5.51.251 -> 0.5.54.261 +- Spawn Animations 1.8.2 -> 1.9 - Tom's Trading Network 0.1.0 -> 0.2.0 - ZeroCore 2 2.1.33 -> 2.1.34 diff --git a/index.toml b/index.toml index 053b629..1934de2 100644 --- a/index.toml +++ b/index.toml @@ -287,6 +287,11 @@ file = "mods/collective.pw.toml" hash = "98b174f93e1b252b0886521a02f36c04833d63ab832f2008d92d2e7d79c3ed18" metafile = true +[[files]] +file = "mods/colorful-hearts.pw.toml" +hash = "08114ba005b8cab85c43e8d24c9bf7b3164b237b5c0597647a72c138aeded52e" +metafile = true + [[files]] file = "mods/compact-machines.pw.toml" hash = "53d2af852bfd91938b19c1c25a9678ce2cb34f09494514f44fa0e59313e8eab6" @@ -364,7 +369,7 @@ metafile = true [[files]] file = "mods/createaddition.pw.toml" -hash = "5b9a6cc1eb37dea317debe134e5ee19a41d8c5822e003979fe866298657807c4" +hash = "c14f367d6613911833f2b158642db0e9e9852cba78618cdf683233dbbc5c7b2a" metafile = true [[files]] @@ -1114,7 +1119,7 @@ metafile = true [[files]] file = "mods/spawn-animations.pw.toml" -hash = "b4b8e10d243bf3b0c5a3e2346141adae563bc70156fdd111a27cf1de827c24be" +hash = "1759a8b2e4ae795747f3438a69d513040c5f24d7faf5d59dce85fdb0f34ec67d" metafile = true [[files]] @@ -1139,12 +1144,12 @@ metafile = true [[files]] file = "mods/supermartijn642s-config-lib.pw.toml" -hash = "ad510a025c5e7b9255cf1d8eb0ad0004d095261e3f4691cd9bf488e1b1c3f8a8" +hash = "4c9539a6d5f8e98809bc518b9ee8231b6c515c58a1f74d9b88b71a6fff26ba03" metafile = true [[files]] file = "mods/supermartijn642s-core-lib.pw.toml" -hash = "f516b9896ceb6b5a76b9960e4f3c5ca8e92e706b464893df515fd9028a2f1215" +hash = "2dd04c6dd644fffd92097bbf5c33dec6dac7492d5bde6a63283653e2c8a69eb8" metafile = true [[files]] @@ -1157,6 +1162,11 @@ file = "mods/terrablender.pw.toml" hash = "64036b0bc617a33d904a0e6371ddc7d63896a888b1e0ada1a6eae8f647bb9327" metafile = true +[[files]] +file = "mods/tesseract.pw.toml" +hash = "fc1ecb1250e8e7ba720c19f5faf698f27e498610e154b7979ee44be4b116e4f5" +metafile = true + [[files]] file = "mods/the-accurate-backrooms.pw.toml" hash = "31c83b9396527bc5cd11a0757d35db98ad32d1fc6912160b0f27183743c3fea7" diff --git a/mods/colorful-hearts.pw.toml b/mods/colorful-hearts.pw.toml new file mode 100644 index 0000000..c4d4b3d --- /dev/null +++ b/mods/colorful-hearts.pw.toml @@ -0,0 +1,13 @@ +name = "Colorful Hearts" +filename = "colorfulhearts-forge-1.19.3-1.0.0.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/wQfMUdZT/versions/AcEcpMPx/colorfulhearts-forge-1.19.3-1.0.0.jar" +hash-format = "sha1" +hash = "73bae460bb14f5b36b031fa4d5f4bdc91cc82f32" + +[update] +[update.modrinth] +mod-id = "wQfMUdZT" +version = "AcEcpMPx" diff --git a/mods/createaddition.pw.toml b/mods/createaddition.pw.toml index 69b43db..18c92d8 100644 --- a/mods/createaddition.pw.toml +++ b/mods/createaddition.pw.toml @@ -1,13 +1,13 @@ name = "Create Crafts & Additions" -filename = "createaddition-1.19.2-20230426a.jar" +filename = "createaddition-1.19.2-20230507a.jar" side = "both" [download] hash-format = "sha1" -hash = "1f307306cef8ad2c54bfcebc4d266e8c4ce741de" +hash = "34802a7b6ea94957d7f18e33ba84551f59420bf6" mode = "metadata:curseforge" [update] [update.curseforge] -file-id = 4508466 +file-id = 4526961 project-id = 439890 diff --git a/mods/spawn-animations.pw.toml b/mods/spawn-animations.pw.toml index aadaf6a..5df4247 100644 --- a/mods/spawn-animations.pw.toml +++ b/mods/spawn-animations.pw.toml @@ -1,13 +1,13 @@ name = "Spawn Animations" -filename = "spawn-animations-1.8.2.jar" +filename = "spawn-animations-1.9.jar" side = "both" [download] -url = "https://cdn.modrinth.com/data/zrzYrlm0/versions/2jV4945M/spawn-animations-1.8.2.jar" +url = "https://cdn.modrinth.com/data/zrzYrlm0/versions/H71wYhEG/spawn-animations-1.9.jar" hash-format = "sha1" -hash = "3dabc3801fd42b75331fa14f38fdb94a68262e05" +hash = "e9c74ee26abbb1064f762ed970c22b29ab44358e" [update] [update.modrinth] mod-id = "zrzYrlm0" -version = "2jV4945M" +version = "H71wYhEG" diff --git a/mods/supermartijn642s-config-lib.pw.toml b/mods/supermartijn642s-config-lib.pw.toml index 65a31ee..4e2d69c 100644 --- a/mods/supermartijn642s-config-lib.pw.toml +++ b/mods/supermartijn642s-config-lib.pw.toml @@ -3,11 +3,11 @@ filename = "supermartijn642configlib-1.1.6b-forge-mc1.19.jar" side = "both" [download] +url = "https://cdn.modrinth.com/data/LN9BxssP/versions/1.1.6b-forge-mc1.19/supermartijn642configlib-1.1.6b-forge-mc1.19.jar" hash-format = "sha1" hash = "15ddddd5facc0967345c0510092379d78eac071b" -mode = "metadata:curseforge" [update] -[update.curseforge] -file-id = 3871792 -project-id = 438332 +[update.modrinth] +mod-id = "LN9BxssP" +version = "9pwSswPr" diff --git a/mods/supermartijn642s-core-lib.pw.toml b/mods/supermartijn642s-core-lib.pw.toml index 2f1c0c4..1d10073 100644 --- a/mods/supermartijn642s-core-lib.pw.toml +++ b/mods/supermartijn642s-core-lib.pw.toml @@ -3,11 +3,11 @@ filename = "supermartijn642corelib-1.1.7-forge-mc1.19.jar" side = "both" [download] +url = "https://cdn.modrinth.com/data/rOUBggPv/versions/LzvMbz0m/supermartijn642corelib-1.1.7-forge-mc1.19.jar" hash-format = "sha1" hash = "bdaff70cdb65c9204dc53164f93d82043b4b922a" -mode = "metadata:curseforge" [update] -[update.curseforge] -file-id = 4484238 -project-id = 454372 +[update.modrinth] +mod-id = "rOUBggPv" +version = "LzvMbz0m" diff --git a/mods/tesseract.pw.toml b/mods/tesseract.pw.toml new file mode 100644 index 0000000..a062498 --- /dev/null +++ b/mods/tesseract.pw.toml @@ -0,0 +1,13 @@ +name = "Tesseract" +filename = "tesseract-1.0.34-forge-mc1.19.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/OUhp5O2m/versions/dImbxVsl/tesseract-1.0.34-forge-mc1.19.jar" +hash-format = "sha1" +hash = "1e87256964950f3be932b734c11c645b8e0947fb" + +[update] +[update.modrinth] +mod-id = "OUhp5O2m" +version = "dImbxVsl" diff --git a/pack.toml b/pack.toml index b666d23..e5328a3 100644 --- a/pack.toml +++ b/pack.toml @@ -6,7 +6,7 @@ pack-format = "packwiz:1.1.0" [index] file = "index.toml" hash-format = "sha256" -hash = "1eebd0df73ab3991876a7072d49dc3d73655b9f374fb394292712459eef1a18d" +hash = "dd78a7cf4a21a6f9d85391d4f39bafd98b25a4acd6be1a935a042a81b021f254" [versions] forge = "43.2.8" From 4579b657b98d25f8b68344011e562f143cb2540f Mon Sep 17 00:00:00 2001 From: Thomas Hinkle Date: Mon, 8 May 2023 20:46:43 -0500 Subject: [PATCH 23/36] Fixed an issue with mod compatibility. --- CHANGELOG.md | 3 +- index.toml | 11 ++++---- kubejs/server_scripts/balance.js | 11 ++++++++ kubejs/server_scripts/compat.js | 47 ++++++++++++++++++++++++++++++++ mods/colorful-hearts.pw.toml | 13 --------- pack.toml | 2 +- 6 files changed, 65 insertions(+), 22 deletions(-) create mode 100644 kubejs/server_scripts/compat.js delete mode 100644 mods/colorful-hearts.pw.toml diff --git a/CHANGELOG.md b/CHANGELOG.md index c760658..577efcc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,7 @@ This will be the initial release for the production server. I will avoid adding - Added the new wallet and removed the old satchel and currency. - Added our updated config for FTBChunks. - Made Create ores (besides zinc) slightly less common. +- You can now craft plates using Create or Thermal Expansion. ## Mods @@ -31,8 +32,6 @@ This will be the initial release for the production server. I will avoid adding - Automatically swaps to the correct tool for breaking the block if it's in your hotbar. - Chunky - Allows OPs to pre-generate chunks. -- Colorful Hearts - - Layers colored hearts over your health instead of displaying multiple rows of hearts. - Light Overlay - Lets you see light levels by pressing F7. Red = Monsters will spawn anytime, Yellow = Monsters will spawn at night. - Mindful Darkness diff --git a/index.toml b/index.toml index 1934de2..6bf53b5 100644 --- a/index.toml +++ b/index.toml @@ -102,12 +102,16 @@ hash = "14a77b647bc3b65ba673b4430efea6930e83e30eee1525fc82e2722be9dc57db" [[files]] file = "kubejs/server_scripts/balance.js" -hash = "b3853c1c8e1445cc96d5ba246440affd7e6a8ebd7e0f31f767cbd8b6f6edb5fc" +hash = "471dfa5a617b7f8fdb700ed0be09de63c2aec9c542dd2f8065a03c3a28957ad6" [[files]] file = "kubejs/server_scripts/banned.js" hash = "6b956902beb69b0abe652b87a12fc49cd260b10ea2568a9fed6378cdf8bd5d87" +[[files]] +file = "kubejs/server_scripts/compat.js" +hash = "2ebe7de3f18a76f782e4736067eebadcc8710ace3d95fe5d6d22e6f2d02da552" + [[files]] file = "kubejs/server_scripts/currency.js" hash = "a7cb07fa43e9f01ff5472ba08f13483e346b88560d4a2304ffb6f1e64621b367" @@ -287,11 +291,6 @@ file = "mods/collective.pw.toml" hash = "98b174f93e1b252b0886521a02f36c04833d63ab832f2008d92d2e7d79c3ed18" metafile = true -[[files]] -file = "mods/colorful-hearts.pw.toml" -hash = "08114ba005b8cab85c43e8d24c9bf7b3164b237b5c0597647a72c138aeded52e" -metafile = true - [[files]] file = "mods/compact-machines.pw.toml" hash = "53d2af852bfd91938b19c1c25a9678ce2cb34f09494514f44fa0e59313e8eab6" diff --git a/kubejs/server_scripts/balance.js b/kubejs/server_scripts/balance.js index f26b863..a928571 100644 --- a/kubejs/server_scripts/balance.js +++ b/kubejs/server_scripts/balance.js @@ -6,6 +6,7 @@ ServerEvents.recipes((event) => { // Removing recipes that are being rebalanced event.remove({ id: "rftoolsbuilder:shape_card_quarry" }); event.remove({ id: "mekanism:digital_miner" }); + event.remove({ id: "tesseract:tesseract" }); // RFTools Builder Quarry Card event.shaped("rftoolsbuilder:shape_card_quarry", ["DPD", "ICI", "DSD"], { @@ -89,4 +90,14 @@ ServerEvents.recipes((event) => { B: "thermal:bronze_gear", F: "create:fluid_pipe", }); + + // Tesseract + event.shaped("tesseract:tesseract", ["PGP", "SCR", "PEP"], { + P: "thermal:enderium_plate", + G: "thermal:enderium_gear", + S: "thermal:redstone_servo", + C: "minecraft:ender_chest", + R: "thermal:rf_coil", + E: "thermal:energy_cell_frame", + }); }); diff --git a/kubejs/server_scripts/compat.js b/kubejs/server_scripts/compat.js new file mode 100644 index 0000000..db6c37a --- /dev/null +++ b/kubejs/server_scripts/compat.js @@ -0,0 +1,47 @@ +// priority 2 + +// Adding compatiblity between mods + +ServerEvents.recipes((event) => { + // Craft modded plates with Create + event.recipes.create.pressing("thermal:steel_plate", "thermal:steel_ingot"); + event.recipes.create.pressing( + "thermal:rose_gold_plate", + "thermal:rose_gold_ingot" + ); + event.recipes.create.pressing( + "thermal:signalum_plate", + "thermal:signalum_ingot" + ); + event.recipes.create.pressing( + "thermal:lumium_plate", + "thermal:lumium_ingot" + ); + event.recipes.create.pressing( + "thermal:enderium_plate", + "thermal:enderium_ingot" + ); + event.recipes.create.pressing("thermal:lead_plate", "thermal:lead_ingot"); + event.recipes.create.pressing("thermal:tin_plate", "thermal:tin_ingot"); + event.recipes.create.pressing( + "thermal:silver_plate", + "thermal:silver_ingot" + ); + event.recipes.create.pressing( + "thermal:nickel_plate", + "thermal:nickel_ingot" + ); + event.recipes.create.pressing( + "thermal:bronze_plate", + "thermal:bronze_ingot" + ); + event.recipes.create.pressing( + "thermal:electrum_plate", + "thermal:electrum_ingot" + ); + event.recipes.create.pressing("thermal:invar_plate", "thermal:invar_ingot"); + event.recipes.create.pressing( + "thermal:constantan_plate", + "thermal:constantan_ingot" + ); +}); diff --git a/mods/colorful-hearts.pw.toml b/mods/colorful-hearts.pw.toml deleted file mode 100644 index c4d4b3d..0000000 --- a/mods/colorful-hearts.pw.toml +++ /dev/null @@ -1,13 +0,0 @@ -name = "Colorful Hearts" -filename = "colorfulhearts-forge-1.19.3-1.0.0.jar" -side = "client" - -[download] -url = "https://cdn.modrinth.com/data/wQfMUdZT/versions/AcEcpMPx/colorfulhearts-forge-1.19.3-1.0.0.jar" -hash-format = "sha1" -hash = "73bae460bb14f5b36b031fa4d5f4bdc91cc82f32" - -[update] -[update.modrinth] -mod-id = "wQfMUdZT" -version = "AcEcpMPx" diff --git a/pack.toml b/pack.toml index e5328a3..7a13d3a 100644 --- a/pack.toml +++ b/pack.toml @@ -6,7 +6,7 @@ pack-format = "packwiz:1.1.0" [index] file = "index.toml" hash-format = "sha256" -hash = "dd78a7cf4a21a6f9d85391d4f39bafd98b25a4acd6be1a935a042a81b021f254" +hash = "1405fecc20bec7588c693c7a81ea0f7b1dbb4679c7939ac389e55c037b871f20" [versions] forge = "43.2.8" From ae33111c851176493f4364843b3b1f28ba9b2974 Mon Sep 17 00:00:00 2001 From: Thomas Hinkle Date: Wed, 17 May 2023 21:34:30 -0500 Subject: [PATCH 24/36] Updating mods --- CHANGELOG.md | 7 +++++-- index.toml | 14 +++++++------- mods/botania.pw.toml | 6 +++--- mods/botany-trees.pw.toml | 6 +++--- mods/canary.pw.toml | 6 +++--- mods/in-control.pw.toml | 6 +++--- mods/john_mod_reborn.pw.toml | 8 ++++---- mods/journeymap.pw.toml | 6 +++--- mods/selene.pw.toml | 6 +++--- pack.toml | 2 +- 10 files changed, 35 insertions(+), 32 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 577efcc..b52f8df 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -57,8 +57,10 @@ This will be the initial release for the production server. I will avoid adding - Almost Unified 0.4.2 -> 0.4.4 - Aquamirae 5.6.API14 -> 6.API15 - Architectury API 6.5.77 -> 6.5.82 +- Botania 1.19.2-438 -> 1.19.2.439 - Botany Pots 9.0.31 -> 9.0.33 - Botany Trees 5.0.5 -> 5.0.7 +- Canary 0.1.10 -> 0.2.0 - Connectivity 3.5 -> 4.2 - Cooking for Blockheads 13.3.1 -> 13.3.2 - Crafting Tweaks 15.1.6 -> 15.1.7 @@ -67,12 +69,13 @@ This will be the initial release for the production server. I will avoid adding - Curios API 5.1.4.0 -> 5.1.4.1 - Extreme Reactors 2.0.62 -> 2.0.63 - FastWorkbench 7.1.1 -> 7.1.2 -- In Control! 7.1.3 -> 7.1.5 -- JourneyMap 5.9.5 -> 5.9.6 +- In Control! 7.1.3 -> 7.1.7 +- JourneyMap 5.9.5 -> 5.9.7 - KleeSlabs 12.2.0 -> 12.3.0 - Konkrete [Forge] 1.6.0 -> 1.6.1 - Kotlin for Forge 3.11.0 -> 3.12.0 - libIPN 2.0.6 -> 2.0.7 +- Moonlight Lib 2.2.31 -> 2.2.32 - Obscure API 14 -> 15 - Pam's HarvestCraft 2 - Crops 1.0.1 -> 1.0.2 - PneumaticCraft: Repressurized 4.3.3-22 -> 4.3.4-24 diff --git a/index.toml b/index.toml index 6bf53b5..80a7765 100644 --- a/index.toml +++ b/index.toml @@ -233,7 +233,7 @@ metafile = true [[files]] file = "mods/botania.pw.toml" -hash = "3a15bcaf0a169b950a7ffbc13e9d645c6147be7bd81e57ca557537c74902c431" +hash = "dec5b7bd20fe2c05bc53d06be0227ce36e483df2b6ea9c449d30ba76a5f7ab8c" metafile = true [[files]] @@ -243,12 +243,12 @@ metafile = true [[files]] file = "mods/botany-trees.pw.toml" -hash = "2ff17f9a69c3a2d4156f87c6bc6ae3c6d60d64be1239d6ce52dec6b0b0be6f8b" +hash = "698f6c3d51eaf52c7390f66ea363d749941186597c4a1168b8052ccaea8b4e02" metafile = true [[files]] file = "mods/canary.pw.toml" -hash = "58f75414da63386b16498d447ebd9c0074e72df9e8a667f075577e1813e5d31e" +hash = "60061bee2adc96c9e68daff1e9103f3ccacd6b64233926621f38c8fe7ff819cd" metafile = true [[files]] @@ -543,7 +543,7 @@ metafile = true [[files]] file = "mods/in-control.pw.toml" -hash = "cdba3e48ab3073ec056c666c8c478cdb37f950d1dd114b07304252f842e03171" +hash = "0ede82beced1a98773025eb734e90e6492650d97ecd1c61a47a023103727f8ed" metafile = true [[files]] @@ -593,7 +593,7 @@ metafile = true [[files]] file = "mods/john_mod_reborn.pw.toml" -hash = "58acfa07a6918387d574fa62f270aca7c6347e5c3d13aa3277beabbbb5404b78" +hash = "ae73263b91ad88f23fc68d0a53a7110688e5eea30916a01681eb76c12d2e78b3" metafile = true [[files]] @@ -603,7 +603,7 @@ metafile = true [[files]] file = "mods/journeymap.pw.toml" -hash = "7de9b15fdbece680a4327148eb5c9d4610eaaca01b6fc08f84e9dd545d4fdfbb" +hash = "aa19f1e147d97a697e4fb84f061db2ad6735ecca27d29ed6c233f8384449c9ee" metafile = true [[files]] @@ -1068,7 +1068,7 @@ metafile = true [[files]] file = "mods/selene.pw.toml" -hash = "8b90af7acd60fbdf3f19861e794b7dc2d2c749480ccca7409aa0ea6e7752f7df" +hash = "746663fba0e14847e0d3eb760a158b17180afaa93510470d5ee84a825694f84d" metafile = true [[files]] diff --git a/mods/botania.pw.toml b/mods/botania.pw.toml index 9882840..420e36b 100644 --- a/mods/botania.pw.toml +++ b/mods/botania.pw.toml @@ -1,13 +1,13 @@ name = "Botania" -filename = "Botania-1.19.2-438-FORGE.jar" +filename = "Botania-1.19.2-439-FORGE.jar" side = "both" [download] hash-format = "sha1" -hash = "f41f7d529f1d290e43e83bf0bcaf62c0db0fec4a" +hash = "817df1ed5fb12fb2086bd8a6d4856758ec27ed09" mode = "metadata:curseforge" [update] [update.curseforge] -file-id = 4415871 +file-id = 4538173 project-id = 225643 diff --git a/mods/botany-trees.pw.toml b/mods/botany-trees.pw.toml index 5dd6382..7cdf04a 100644 --- a/mods/botany-trees.pw.toml +++ b/mods/botany-trees.pw.toml @@ -1,13 +1,13 @@ name = "Botany Trees" -filename = "BotanyTrees-Forge-1.19.2-5.0.7.jar" +filename = "BotanyTrees-Forge-1.19.2-5.0.8.jar" side = "both" [download] hash-format = "sha1" -hash = "eaadaa1fcb081e909a466fddb37541bcabd8d019" +hash = "d8fc2cf8ac7bd750b35ef007cfbdec1c9ec75ad5" mode = "metadata:curseforge" [update] [update.curseforge] -file-id = 4514740 +file-id = 4529269 project-id = 411357 diff --git a/mods/canary.pw.toml b/mods/canary.pw.toml index 3896c8b..fc88424 100644 --- a/mods/canary.pw.toml +++ b/mods/canary.pw.toml @@ -1,13 +1,13 @@ name = "Canary" -filename = "canary-mc1.19.2-0.1.10.jar" +filename = "canary-mc1.19.2-0.2.0.jar" side = "both" [download] hash-format = "sha1" -hash = "be75b7b41b50e275df2f034f32501bf17a6c5dc7" +hash = "e823f50e83311851ce692c76e2cb107499bf535e" mode = "metadata:curseforge" [update] [update.curseforge] -file-id = 4498536 +file-id = 4537626 project-id = 665658 diff --git a/mods/in-control.pw.toml b/mods/in-control.pw.toml index 09fb3c5..97ad689 100644 --- a/mods/in-control.pw.toml +++ b/mods/in-control.pw.toml @@ -1,13 +1,13 @@ name = "In Control!" -filename = "incontrol-1.19-7.1.5.jar" +filename = "incontrol-1.19-7.1.7.jar" side = "both" [download] hash-format = "sha1" -hash = "de040acac15feb3e88fe79c150fb33a8941aba72" +hash = "2406c3b9ce7b92db2ab92ffc9c7ffad0377343c8" mode = "metadata:curseforge" [update] [update.curseforge] -file-id = 4513203 +file-id = 4532367 project-id = 257356 diff --git a/mods/john_mod_reborn.pw.toml b/mods/john_mod_reborn.pw.toml index dc7c0a1..8829be4 100644 --- a/mods/john_mod_reborn.pw.toml +++ b/mods/john_mod_reborn.pw.toml @@ -1,13 +1,13 @@ name = "The John Mod Reborn" -filename = "John_Mod_Reborn_1.0.1_mc1.19.2.jar" +filename = "John_Mod_Reborn_1.0.2_mc1.19.2.jar" side = "both" [download] -url = "https://cdn.modrinth.com/data/wbFL8rKi/versions/5s1OOXnW/John_Mod_Reborn_1.0.1_mc1.19.2.jar" +url = "https://cdn.modrinth.com/data/wbFL8rKi/versions/xvBPWtkE/John_Mod_Reborn_1.0.2_mc1.19.2.jar" hash-format = "sha1" -hash = "a36c5fa337595c95836235c284bec242d987adb1" +hash = "aaeacbd8d77aef106566b19300bb724e88ad3f09" [update] [update.modrinth] mod-id = "wbFL8rKi" -version = "5s1OOXnW" +version = "xvBPWtkE" diff --git a/mods/journeymap.pw.toml b/mods/journeymap.pw.toml index 2ef272e..b8b0895 100644 --- a/mods/journeymap.pw.toml +++ b/mods/journeymap.pw.toml @@ -1,13 +1,13 @@ name = "JourneyMap" -filename = "journeymap-1.19.2-5.9.6-forge.jar" +filename = "journeymap-1.19.2-5.9.7-forge.jar" side = "both" [download] hash-format = "sha1" -hash = "89ef890f852bacc76b9c45bfee63cf4e2e1d9abe" +hash = "de7c2d3d6aec4cbf5db3aafaaf6c5591f3a54477" mode = "metadata:curseforge" [update] [update.curseforge] -file-id = 4517057 +file-id = 4532924 project-id = 32274 diff --git a/mods/selene.pw.toml b/mods/selene.pw.toml index d929f30..2c888c4 100644 --- a/mods/selene.pw.toml +++ b/mods/selene.pw.toml @@ -1,13 +1,13 @@ name = "Moonlight Lib" -filename = "moonlight-1.19.2-2.2.31-forge.jar" +filename = "moonlight-1.19.2-2.2.32-forge.jar" side = "both" [download] hash-format = "sha1" -hash = "00a8599db60711cc0c47da7efc1fa0860cf2e4bb" +hash = "cd26ca54441bb5aaee0a7fab440805443dab3846" mode = "metadata:curseforge" [update] [update.curseforge] -file-id = 4491267 +file-id = 4535354 project-id = 499980 diff --git a/pack.toml b/pack.toml index 7a13d3a..23c6ddc 100644 --- a/pack.toml +++ b/pack.toml @@ -6,7 +6,7 @@ pack-format = "packwiz:1.1.0" [index] file = "index.toml" hash-format = "sha256" -hash = "1405fecc20bec7588c693c7a81ea0f7b1dbb4679c7939ac389e55c037b871f20" +hash = "126c75f41af59e91756a116ef61d4a28e7ef7ae8e1633ad9d566f4616492f55f" [versions] forge = "43.2.8" From 4187139802cb7203ef926859150c7deb932c138a Mon Sep 17 00:00:00 2001 From: Thomas Hinkle Date: Tue, 6 Jun 2023 12:42:53 -0500 Subject: [PATCH 25/36] Updated a bunch of mods. --- CHANGELOG.md | 47 ++++++++++---- index.toml | 73 ++++++++++++---------- mods/additional-enchanted-miner.pw.toml | 8 +-- mods/advanced-peripherals.pw.toml | 6 +- mods/architectury-api.pw.toml | 8 +-- mods/bookshelf.pw.toml | 6 +- mods/botania.pw.toml | 6 +- mods/canary.pw.toml | 6 +- mods/create-deco.pw.toml | 6 +- mods/create.pw.toml | 6 +- mods/createaddition.pw.toml | 6 +- mods/dark-utilities.pw.toml | 6 +- mods/ftb-backups-2.pw.toml | 6 +- mods/ftb-library-forge.pw.toml | 6 +- mods/in-control.pw.toml | 6 +- mods/inventory-sorter.pw.toml | 6 +- mods/jade-addons.pw.toml | 6 +- mods/john_mod_reborn.pw.toml | 8 +-- mods/libipn.pw.toml | 6 +- mods/little-contraptions.pw.toml | 6 +- mods/little-logistics.pw.toml | 6 +- mods/macaws-trapdoors.pw.toml | 6 +- mods/mindful-darkness.pw.toml | 16 ++--- mods/nomowanderer.pw.toml | 6 +- mods/oaks-nature.pw.toml | 13 ++++ mods/pams-harvestcraft-2-food-core.pw.toml | 6 +- mods/placebo.pw.toml | 6 +- mods/seamless.pw.toml | 8 +-- mods/seasonhud.pw.toml | 6 +- mods/selene.pw.toml | 6 +- mods/shetiphiancore.pw.toml | 6 +- mods/sophisticated-backpacks.pw.toml | 6 +- mods/sophisticated-core.pw.toml | 6 +- mods/supermartijn642s-core-lib.pw.toml | 8 +-- mods/terrablender.pw.toml | 6 +- mods/toms-trading-network.pw.toml | 8 +-- mods/torchmaster.pw.toml | 6 +- pack.toml | 2 +- 38 files changed, 202 insertions(+), 159 deletions(-) create mode 100644 mods/oaks-nature.pw.toml diff --git a/CHANGELOG.md b/CHANGELOG.md index b52f8df..df78a1f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -36,6 +36,8 @@ This will be the initial release for the production server. I will avoid adding - Lets you see light levels by pressing F7. Red = Monsters will spawn anytime, Yellow = Monsters will spawn at night. - Mindful Darkness - Adds a dark mode for Minecraft GUIs. Optional. +- Oaks Nature + - Adds some decorative nature stuff. - Plenty Plates - Adds several specialized pressure plates. For example, the obsidian pressure plate only works with players. - ReBlured @@ -54,37 +56,60 @@ This will be the initial release for the production server. I will avoid adding ### Updates +- Additional Enchanted Miner 1192.1.0 -> 1192.1.1 +- Advanced Peripherals 0.7.27r -> 0.7.28r - Almost Unified 0.4.2 -> 0.4.4 - Aquamirae 5.6.API14 -> 6.API15 -- Architectury API 6.5.77 -> 6.5.82 -- Botania 1.19.2-438 -> 1.19.2.439 +- Architectury API 6.5.77 -> 6.5.85 +- Bookshelf 16.2.18 -> 16.3.20 +- Botania 1.19.2-438 -> 1.19.2.440 - Botany Pots 9.0.31 -> 9.0.33 - Botany Trees 5.0.5 -> 5.0.7 -- Canary 0.1.10 -> 0.2.0 +- Canary 0.1.10 -> 0.2.4 - Connectivity 3.5 -> 4.2 - Cooking for Blockheads 13.3.1 -> 13.3.2 - Crafting Tweaks 15.1.6 -> 15.1.7 -- Create Crafts and Additions 1.19.2-20230411a -> 1.19.2-20230507a -- Create Deco 1.3.1 -> 1.3.2 +- Create 0.5.0.i -> 0.5.1.b +- Create Crafts and Additions 1.19.2-20230411a -> 1.19.2-20230527a +- Create Deco 1.3.1 -> 1.3.3 - Curios API 5.1.4.0 -> 5.1.4.1 +- Dark Utilities 13.1.7 -> 13.1.9 - Extreme Reactors 2.0.62 -> 2.0.63 - FastWorkbench 7.1.1 -> 7.1.2 -- In Control! 7.1.3 -> 7.1.7 +- FTB Backups 2 1.0.18 -> 1.0.19 +- FTB Library (Forge) 1902.3.18-build.208 -> 1902.3.19-build.214 +- In Control! 7.1.3 -> 7.1.8 +- Inventory Sorter 21.0.4 -> 22.0.0 +- Jade Addons (Forge) 3.4.0 -> 3.5.0 - JourneyMap 5.9.5 -> 5.9.7 - KleeSlabs 12.2.0 -> 12.3.0 - Konkrete [Forge] 1.6.0 -> 1.6.1 - Kotlin for Forge 3.11.0 -> 3.12.0 -- libIPN 2.0.6 -> 2.0.7 -- Moonlight Lib 2.2.31 -> 2.2.32 +- libIPN 2.0.6 -> 3.0.1 +- Little Contraptions 1.19.2.0 -> 1.19.2.2 +- Little Logistics v1.3.2 -> v1.4.0 +- Macaw's Trapdoors 1.0.9 -> 1.1.0 +- Mindful Darkness 4.0.5 -> 4.0.9 +- Moonlight Lib 2.2.31 -> 2.2.38 +- NoMoWanderer 1.3.6 -> 1.3.7 - Obscure API 14 -> 15 - Pam's HarvestCraft 2 - Crops 1.0.1 -> 1.0.2 +- Pam's HarvestCraft 2 - Food Core 1.0.0 -> 1.0.1 +- Placebo 7.1.8 -> 7.2.0 - PneumaticCraft: Repressurized 4.3.3-22 -> 4.3.4-24 - RFTools Builder 5.2.6 -> 5.2.8 - Saturn 0.0.3 -> 0.0.4 -- SeasonHUD 1.4.12 -> 1.4.14 -- Sophisticated Core 0.5.51.251 -> 0.5.54.261 +- Seamless 1.1.0 -> 1.3.0 +- SeasonHUD 1.4.12 -> 1.4.18 +- ShetiPhianCore 11.3.01 -> 3.11.3.02 +- Sophisticated Backpacks 3.18.45.819 -> 3.18.50.847 +- Sophisticated Core 0.5.51.251 -> 0.5.69.311 - Spawn Animations 1.8.2 -> 1.9 -- Tom's Trading Network 0.1.0 -> 0.2.0 +- SuperMartijn642's Core Lib 1.1.7 -> 1.1.9a +- TerraBlender (Forge) 2.0.1.136 -> 2.0.1.162 +- The John Mod Reborn 1.0.2 -> 1.0.4 +- Tom's Trading Network 0.1.0 -> 0.2.1 +- Torchmaster 19.2.0 -> 19.2.90 - ZeroCore 2 2.1.33 -> 2.1.34 # 1.0.19 diff --git a/index.toml b/index.toml index 80a7765..24867e2 100644 --- a/index.toml +++ b/index.toml @@ -118,7 +118,7 @@ hash = "a7cb07fa43e9f01ff5472ba08f13483e346b88560d4a2304ffb6f1e64621b367" [[files]] file = "mods/additional-enchanted-miner.pw.toml" -hash = "f15fab7e4346cb04bd34aaa5b3037a02793df36934f72a61c34dbfc158204a04" +hash = "024ca53ad82a3564f3626df6e24539c789fb12ac21238649270906ac49f7e2d2" metafile = true [[files]] @@ -133,7 +133,7 @@ metafile = true [[files]] file = "mods/advanced-peripherals.pw.toml" -hash = "8e686da2db44388474f16c6eba6da8529319ae3284622bd6600c1d460f5ac388" +hash = "81b518296ec4db07259934cce1523228499c8c5b824f6425a207e84587cd980e" metafile = true [[files]] @@ -178,7 +178,7 @@ metafile = true [[files]] file = "mods/architectury-api.pw.toml" -hash = "fcabb4357f5f82f9a010a55a1e4758d5e8aaafee04b36614ad60861889b887db" +hash = "e06965d8aea5dee2531377f962616b4843f3af7d5bea5b213a0b257f4595af0f" metafile = true [[files]] @@ -228,12 +228,12 @@ metafile = true [[files]] file = "mods/bookshelf.pw.toml" -hash = "9c6f89d65804f3f09d774105c6a9afda57c949f7c0610689eb9c09de8cc3f1b8" +hash = "3094a52897889217e37bf772fa43727fc4a7f81d0dc9a5e25be933630192bcbb" metafile = true [[files]] file = "mods/botania.pw.toml" -hash = "dec5b7bd20fe2c05bc53d06be0227ce36e483df2b6ea9c449d30ba76a5f7ab8c" +hash = "b28c3da3ee3ca475f8c79cbc4e8eb2f5fd44ab488bc14bfdf1fc04dc6f6e67c4" metafile = true [[files]] @@ -248,7 +248,7 @@ metafile = true [[files]] file = "mods/canary.pw.toml" -hash = "60061bee2adc96c9e68daff1e9103f3ccacd6b64233926621f38c8fe7ff819cd" +hash = "954db250d3d26937d4e62095a336f9c072d3e4ae441d8f71570d63ebcd1b4f83" metafile = true [[files]] @@ -358,17 +358,17 @@ metafile = true [[files]] file = "mods/create-deco.pw.toml" -hash = "6ddc3bbe998bc708a6d986368c3c798ea0df279b0de8a9a5cb67b0bc26cea5b8" +hash = "b0bb61105e0ac0c763edfa41ea5b0406f157bc17e421af1bf8b2cbb49325ced6" metafile = true [[files]] file = "mods/create.pw.toml" -hash = "3263538e83dbfcdfccbe8b278cf163894a992672f97db3efb551c7a47cdf8ff3" +hash = "89bf28ca15640301ff8cf651ccbcae3047cbaf6af30797f739bfa45d1f2299ce" metafile = true [[files]] file = "mods/createaddition.pw.toml" -hash = "c14f367d6613911833f2b158642db0e9e9852cba78618cdf683233dbbc5c7b2a" +hash = "dc215d12d87c9cc23a80637334dbed408a729ac9fb5310fb521d4750023931e6" metafile = true [[files]] @@ -393,7 +393,7 @@ metafile = true [[files]] file = "mods/dark-utilities.pw.toml" -hash = "5f9b7f4b90ef2682032cfbda22f4578457d30e7f98461906713524f549262d73" +hash = "c64bdff1093c4040970ed3ceefc1c33f866e962d0aac38d2da499b6e59025f62" metafile = true [[files]] @@ -503,7 +503,7 @@ metafile = true [[files]] file = "mods/ftb-backups-2.pw.toml" -hash = "fafba9b3f0604e857afeb5fb0b5d47a43e8b314fb6de0d6f648734cf2c1b525a" +hash = "f6e9ab48216ca5c075e27cc5f86bc1b20ac306626ca984a4fb519b4b41e411f0" metafile = true [[files]] @@ -518,7 +518,7 @@ metafile = true [[files]] file = "mods/ftb-library-forge.pw.toml" -hash = "26803327926f5c9293df6c46661c55e8f3ad21c8250e8121a6986dcb1c783218" +hash = "f7c6841b8490e85dc08ce0a11da0638a00d2468993402ddf222c875fabd20fe6" metafile = true [[files]] @@ -543,7 +543,7 @@ metafile = true [[files]] file = "mods/in-control.pw.toml" -hash = "0ede82beced1a98773025eb734e90e6492650d97ecd1c61a47a023103727f8ed" +hash = "40ad6e9970ea5b3a353d3342be25a8f957c129766b13ec70ff5794845df0ada3" metafile = true [[files]] @@ -558,7 +558,7 @@ metafile = true [[files]] file = "mods/inventory-sorter.pw.toml" -hash = "0b2c570acfd6375e2aa8f649cb26384cf1194e9966dd8c7d2df04399a071f53c" +hash = "b278c5bbfd28feeb69a54f3bd9ad1693e77f348dc7b9727888d6334f94997bae" metafile = true [[files]] @@ -578,7 +578,7 @@ metafile = true [[files]] file = "mods/jade-addons.pw.toml" -hash = "4b71171ba73da26c1582f013ebd49882b7d101da463a71ada07854c1aede2206" +hash = "f41cbd4e04d52ac715dc243fe0cd0df327de89a155d5c2145aa26ba7667d43c8" metafile = true [[files]] @@ -593,7 +593,7 @@ metafile = true [[files]] file = "mods/john_mod_reborn.pw.toml" -hash = "ae73263b91ad88f23fc68d0a53a7110688e5eea30916a01681eb76c12d2e78b3" +hash = "603c1885e86f09dab70970caa8c4730389d8b8a74e20d8cd4042f8e064c8d588" metafile = true [[files]] @@ -648,7 +648,7 @@ metafile = true [[files]] file = "mods/libipn.pw.toml" -hash = "0d3e6c0147189635b4d6ebc77ce00b00e3200ccface603040a8801bd849f0ecc" +hash = "3b9f5b67f80eb8c690dc29d08e6a8769a9dbe88a00b41e435fcdc2e1ed1c9159" metafile = true [[files]] @@ -663,12 +663,12 @@ metafile = true [[files]] file = "mods/little-contraptions.pw.toml" -hash = "6bf00bf499b93a28962bace1a8ac79e4baaa80020cce1ae509615df58713f92f" +hash = "6db3aeb9a695e8e75048bf5dd0bc2cde03026396018dd848837683fb18f7bde8" metafile = true [[files]] file = "mods/little-logistics.pw.toml" -hash = "dfefbf3a86f5b23494c42785eba1e688f6d1156135d07b023945852312680557" +hash = "c58af2b040eed6276c1b575973b82459a4b2559c89ed835fe397445eb32d0321" metafile = true [[files]] @@ -723,7 +723,7 @@ metafile = true [[files]] file = "mods/macaws-trapdoors.pw.toml" -hash = "ccae58379e56d3148c08a27bcd825b1c7f50c984f7d970d5235dae638b3b4f51" +hash = "6652963a36a833070b3fb7959083682a4580da18ed642c43bf05d1524012c43e" metafile = true [[files]] @@ -768,7 +768,7 @@ metafile = true [[files]] file = "mods/mindful-darkness.pw.toml" -hash = "bd4a483f4060ba58d3d32ece696a259674a051e06ca14cc5f70db57b2729f854" +hash = "3e9e45cc4ec49214a37613da9fa03418458c56660aaaa1b1bd82f0ebe042147b" metafile = true [[files]] @@ -823,7 +823,7 @@ metafile = true [[files]] file = "mods/nomowanderer.pw.toml" -hash = "5c0430628e765c41bffc721177218430aaf5c7410fb6bd8bbfbb416b6be881de" +hash = "3b0855bb4c78b834ef5446490fccebda538991d5640fdf2877492e1491a1f271" metafile = true [[files]] @@ -831,6 +831,11 @@ file = "mods/not-enough-animations.pw.toml" hash = "8b0ea61890bb19ca5d5d38a77fb8da7b8e9eaaf06293323b23c7feb7082c076a" metafile = true +[[files]] +file = "mods/oaks-nature.pw.toml" +hash = "fdb55c5a9d392a48a01f73ec594210a10a2ef39744a0b3b292ca31b3bd27e0fe" +metafile = true + [[files]] file = "mods/ob-aquamirae.pw.toml" hash = "9ea1de2b9464ba4142ade3df02cad432c085e26b2d8242875c9d970c43b9be07" @@ -858,7 +863,7 @@ metafile = true [[files]] file = "mods/pams-harvestcraft-2-food-core.pw.toml" -hash = "eaa4564fc5b60449b4a36345280ef1b788a2b7d17199f2a81772541cb40c1d31" +hash = "a5af261cc4ab01e4f2d4e76c837ec3018d9ace1d1cfbc4672a17e094cbd2d3c9" metafile = true [[files]] @@ -893,7 +898,7 @@ metafile = true [[files]] file = "mods/placebo.pw.toml" -hash = "cb0af91d7b5f99b46022e3af2ef7e128028f6a2f91feb0a8f4fa22e9556f30b3" +hash = "9656604f85b22fe3c05f27a507ca7ec6f17b5745faea6382f865b2774c0bb909" metafile = true [[files]] @@ -1053,12 +1058,12 @@ metafile = true [[files]] file = "mods/seamless.pw.toml" -hash = "880a0362a60afd30ffe31eff8bc6a2554eca475309aef4c7294dfbc30ae43dfd" +hash = "c99c459dd30abad856728b65d193957e38cde948a7651b53304e619e8d7c23ad" metafile = true [[files]] file = "mods/seasonhud.pw.toml" -hash = "e175c62939f7433f9bf8ccb120473dcfe60291734ac088504630fe1b8d68d51f" +hash = "4fe524fbc57e0d0c06fdcf0a294d120795115c614ab6fd71bde9fdc402a007ff" metafile = true [[files]] @@ -1068,7 +1073,7 @@ metafile = true [[files]] file = "mods/selene.pw.toml" -hash = "746663fba0e14847e0d3eb760a158b17180afaa93510470d5ee84a825694f84d" +hash = "48d40b4ff0fc80915472f0ae0d53b4a370e973c2b09e449d0d3d4140b3f6f47e" metafile = true [[files]] @@ -1083,7 +1088,7 @@ metafile = true [[files]] file = "mods/shetiphiancore.pw.toml" -hash = "e9c24e17fc72c175a7bb24a930769037f9f3e82f4e79ad34fe67ca7770419674" +hash = "ed0a5a02920d7836c307bef6af23c977b1d2cea10dbe089c953a75daf9839243" metafile = true [[files]] @@ -1103,12 +1108,12 @@ metafile = true [[files]] file = "mods/sophisticated-backpacks.pw.toml" -hash = "18f9d2a42bfa0d4c33e545d0e04f03ab8e92ee379cdab071d87ac56c330ffc69" +hash = "318ac48f5a673d2b91bb1824f45179639c66e8d42ea225fe97fb16016a2e8587" metafile = true [[files]] file = "mods/sophisticated-core.pw.toml" -hash = "7ad4c554d2d59b0c52e48670371695a63f087f85cfaed4d37477818260d600dc" +hash = "0f2614f177b9a36a332bc30f0d7500d3866dc0ed5f4b6963beadfab88554175c" metafile = true [[files]] @@ -1148,7 +1153,7 @@ metafile = true [[files]] file = "mods/supermartijn642s-core-lib.pw.toml" -hash = "2dd04c6dd644fffd92097bbf5c33dec6dac7492d5bde6a63283653e2c8a69eb8" +hash = "f702abd9df78794a23c2926271a8c4b8aa7785e076a16fc72179095bdb2f46af" metafile = true [[files]] @@ -1158,7 +1163,7 @@ metafile = true [[files]] file = "mods/terrablender.pw.toml" -hash = "64036b0bc617a33d904a0e6371ddc7d63896a888b1e0ada1a6eae8f647bb9327" +hash = "df03692ea55f854de0cfcb021bd960643a6a8f09c03c30456eac10232384a41a" metafile = true [[files]] @@ -1223,12 +1228,12 @@ metafile = true [[files]] file = "mods/toms-trading-network.pw.toml" -hash = "54bffcdcb0b85b938e6e693845a443fa99f88df4d86447d4212d57e37e6133fe" +hash = "d4bf7a0a1dd2ec3252c93a5341c618629aa63b041efc93476668b2af084a222e" metafile = true [[files]] file = "mods/torchmaster.pw.toml" -hash = "eb445d9519a2a81b60706da33663b2fc8201de6d486d98489a0f97fa1b0b00a9" +hash = "5541e79ad0de4d09097fdc19b54a342076afa72582a434d58809e1a639a847d4" metafile = true [[files]] diff --git a/mods/additional-enchanted-miner.pw.toml b/mods/additional-enchanted-miner.pw.toml index 82b68de..be75196 100644 --- a/mods/additional-enchanted-miner.pw.toml +++ b/mods/additional-enchanted-miner.pw.toml @@ -1,13 +1,13 @@ name = "Additional Enchanted Miner" -filename = "AdditionalEnchantedMiner-1.19.2-1192.1.0.jar" +filename = "AdditionalEnchantedMiner-1.19.2-1192.1.1.jar" side = "both" [download] -url = "https://cdn.modrinth.com/data/jhxX1zVW/versions/l6GZuMkU/AdditionalEnchantedMiner-1.19.2-1192.1.0.jar" +url = "https://cdn.modrinth.com/data/jhxX1zVW/versions/4pK67MtS/AdditionalEnchantedMiner-1.19.2-1192.1.1.jar" hash-format = "sha1" -hash = "e90d9cc3b46ae35a9a19b46391ace38d2cdfada5" +hash = "e0a6ea311be8f94cfd3b2bb666b3cf80de46f373" [update] [update.modrinth] mod-id = "jhxX1zVW" -version = "l6GZuMkU" +version = "4pK67MtS" diff --git a/mods/advanced-peripherals.pw.toml b/mods/advanced-peripherals.pw.toml index fd071a9..3ea5092 100644 --- a/mods/advanced-peripherals.pw.toml +++ b/mods/advanced-peripherals.pw.toml @@ -1,13 +1,13 @@ name = "Advanced Peripherals" -filename = "AdvancedPeripherals-0.7.27r.jar" +filename = "AdvancedPeripherals-1.19.2-0.7.28r.jar" side = "both" [download] hash-format = "sha1" -hash = "d6a723bddbe0984832219111a5a0c79a61ca3abf" +hash = "634d499a2cb9286872e2e79561d5d59e6862d7a3" mode = "metadata:curseforge" [update] [update.curseforge] -file-id = 4491671 +file-id = 4561251 project-id = 431725 diff --git a/mods/architectury-api.pw.toml b/mods/architectury-api.pw.toml index 9c43145..2cf5aa3 100644 --- a/mods/architectury-api.pw.toml +++ b/mods/architectury-api.pw.toml @@ -1,13 +1,13 @@ name = "Architectury API" -filename = "architectury-6.5.82-forge.jar" +filename = "architectury-6.5.85-forge.jar" side = "both" [download] -url = "https://cdn.modrinth.com/data/lhGA9TYQ/versions/w5Kw8FAN/architectury-6.5.82-forge.jar" +url = "https://cdn.modrinth.com/data/lhGA9TYQ/versions/ns7Xs1B6/architectury-6.5.85-forge.jar" hash-format = "sha1" -hash = "1d10cdaf8c620ed788839c099fadff9bfaa82b26" +hash = "10b119c2e574b30a9f097e85c26aae867789d2b4" [update] [update.modrinth] mod-id = "lhGA9TYQ" -version = "w5Kw8FAN" +version = "ns7Xs1B6" diff --git a/mods/bookshelf.pw.toml b/mods/bookshelf.pw.toml index c2610b2..e616255 100644 --- a/mods/bookshelf.pw.toml +++ b/mods/bookshelf.pw.toml @@ -1,13 +1,13 @@ name = "Bookshelf" -filename = "Bookshelf-Forge-1.19.2-16.2.18.jar" +filename = "Bookshelf-Forge-1.19.2-16.3.20.jar" side = "both" [download] hash-format = "sha1" -hash = "41a653143be3a3f6b007cf8c0c6b97429ef29eb5" +hash = "0129da71db70f19703cd594d6d931b465e6a963f" mode = "metadata:curseforge" [update] [update.curseforge] -file-id = 4426591 +file-id = 4556697 project-id = 228525 diff --git a/mods/botania.pw.toml b/mods/botania.pw.toml index 420e36b..35bca5e 100644 --- a/mods/botania.pw.toml +++ b/mods/botania.pw.toml @@ -1,13 +1,13 @@ name = "Botania" -filename = "Botania-1.19.2-439-FORGE.jar" +filename = "Botania-1.19.2-440-FORGE.jar" side = "both" [download] hash-format = "sha1" -hash = "817df1ed5fb12fb2086bd8a6d4856758ec27ed09" +hash = "fab21c0fe2cc5d25cb7e607dc4100887b9a8339f" mode = "metadata:curseforge" [update] [update.curseforge] -file-id = 4538173 +file-id = 4557912 project-id = 225643 diff --git a/mods/canary.pw.toml b/mods/canary.pw.toml index fc88424..6a8d858 100644 --- a/mods/canary.pw.toml +++ b/mods/canary.pw.toml @@ -1,13 +1,13 @@ name = "Canary" -filename = "canary-mc1.19.2-0.2.0.jar" +filename = "canary-mc1.19.2-0.2.4.jar" side = "both" [download] hash-format = "sha1" -hash = "e823f50e83311851ce692c76e2cb107499bf535e" +hash = "838760e262234a69f7dd4fb159a327229a92b414" mode = "metadata:curseforge" [update] [update.curseforge] -file-id = 4537626 +file-id = 4551264 project-id = 665658 diff --git a/mods/create-deco.pw.toml b/mods/create-deco.pw.toml index 02f245a..66f88c7 100644 --- a/mods/create-deco.pw.toml +++ b/mods/create-deco.pw.toml @@ -1,13 +1,13 @@ name = "Create Deco" -filename = "createdeco-1.3.2-1.19.2.jar" +filename = "createdeco-1.3.3-1.19.2.jar" side = "both" [download] hash-format = "sha1" -hash = "833c238f9ef03f53aef2b6b5bad33886f9f8732f" +hash = "82ba4a2534670c52a91803704bfd343289408a0a" mode = "metadata:curseforge" [update] [update.curseforge] -file-id = 4519287 +file-id = 4554164 project-id = 509285 diff --git a/mods/create.pw.toml b/mods/create.pw.toml index 8f52657..7823e5e 100644 --- a/mods/create.pw.toml +++ b/mods/create.pw.toml @@ -1,13 +1,13 @@ name = "Create" -filename = "create-1.19.2-0.5.0.i.jar" +filename = "create-1.19.2-0.5.1.b.jar" side = "both" [download] hash-format = "sha1" -hash = "16395632af4459543792c6a1c0bfe91aaee4d53d" +hash = "15d57ccb0fb0c2e10673bc685df449db71f9696e" mode = "metadata:curseforge" [update] [update.curseforge] -file-id = 4371809 +file-id = 4550987 project-id = 328085 diff --git a/mods/createaddition.pw.toml b/mods/createaddition.pw.toml index 18c92d8..c8df487 100644 --- a/mods/createaddition.pw.toml +++ b/mods/createaddition.pw.toml @@ -1,13 +1,13 @@ name = "Create Crafts & Additions" -filename = "createaddition-1.19.2-20230507a.jar" +filename = "createaddition-1.19.2-20230527a.jar" side = "both" [download] hash-format = "sha1" -hash = "34802a7b6ea94957d7f18e33ba84551f59420bf6" +hash = "f74830865ec9bfca1983e7f7e235433cd1d17c1e" mode = "metadata:curseforge" [update] [update.curseforge] -file-id = 4526961 +file-id = 4554044 project-id = 439890 diff --git a/mods/dark-utilities.pw.toml b/mods/dark-utilities.pw.toml index 316cc54..7b57b56 100644 --- a/mods/dark-utilities.pw.toml +++ b/mods/dark-utilities.pw.toml @@ -1,13 +1,13 @@ name = "Dark Utilities" -filename = "DarkUtilities-Forge-1.19.2-13.1.7.jar" +filename = "DarkUtilities-Forge-1.19.2-13.1.9.jar" side = "both" [download] hash-format = "sha1" -hash = "da4c8b381e67d4cbf0fd83fdd14476d4d40816f0" +hash = "5c59d30603482b44bf802d092e62b6a46a520a27" mode = "metadata:curseforge" [update] [update.curseforge] -file-id = 4325812 +file-id = 4569332 project-id = 242195 diff --git a/mods/ftb-backups-2.pw.toml b/mods/ftb-backups-2.pw.toml index 5a15b65..f94c983 100644 --- a/mods/ftb-backups-2.pw.toml +++ b/mods/ftb-backups-2.pw.toml @@ -1,13 +1,13 @@ name = "FTB Backups 2" -filename = "ftbbackups2-forge-1.19.2-1.0.18.jar" +filename = "ftbbackups2-forge-1.19.2-1.0.19.jar" side = "both" [download] hash-format = "sha1" -hash = "9a8ca4f1e8f22c11b47cd9807236469204d04263" +hash = "8abd83a0b7603f018046c2c78d472a3777bb55f2" mode = "metadata:curseforge" [update] [update.curseforge] -file-id = 4407546 +file-id = 4560445 project-id = 622737 diff --git a/mods/ftb-library-forge.pw.toml b/mods/ftb-library-forge.pw.toml index 3920cc8..ba9909e 100644 --- a/mods/ftb-library-forge.pw.toml +++ b/mods/ftb-library-forge.pw.toml @@ -1,13 +1,13 @@ name = "FTB Library (Forge)" -filename = "ftb-library-forge-1902.3.18-build.208.jar" +filename = "ftb-library-forge-1902.3.19-build.214.jar" side = "both" [download] hash-format = "sha1" -hash = "ac0ab12a46523a593828eb8051c3197d754822d1" +hash = "924c3b331726e51244ee2d0b304704bef21ef1b0" mode = "metadata:curseforge" [update] [update.curseforge] -file-id = 4500548 +file-id = 4541987 project-id = 404465 diff --git a/mods/in-control.pw.toml b/mods/in-control.pw.toml index 97ad689..0425b21 100644 --- a/mods/in-control.pw.toml +++ b/mods/in-control.pw.toml @@ -1,13 +1,13 @@ name = "In Control!" -filename = "incontrol-1.19-7.1.7.jar" +filename = "incontrol-1.19-7.1.8.jar" side = "both" [download] hash-format = "sha1" -hash = "2406c3b9ce7b92db2ab92ffc9c7ffad0377343c8" +hash = "b43394b4ab06bcb3de9c33456b2f41a1e9f45d5b" mode = "metadata:curseforge" [update] [update.curseforge] -file-id = 4532367 +file-id = 4561680 project-id = 257356 diff --git a/mods/inventory-sorter.pw.toml b/mods/inventory-sorter.pw.toml index fda133d..f64b1d1 100644 --- a/mods/inventory-sorter.pw.toml +++ b/mods/inventory-sorter.pw.toml @@ -1,13 +1,13 @@ name = "Inventory Sorter" -filename = "inventorysorter-1.19.2-21.0.4.jar" +filename = "inventorysorter-22.0.0.jar" side = "both" [download] hash-format = "sha1" -hash = "ddac4a5e079539a49963ff220ad5be49876f61fa" +hash = "1ce8c900fbe55c7031daefdf30c0e3e9ba2fd77e" mode = "metadata:curseforge" [update] [update.curseforge] -file-id = 3963662 +file-id = 4565642 project-id = 240633 diff --git a/mods/jade-addons.pw.toml b/mods/jade-addons.pw.toml index ea29480..4a16c5b 100644 --- a/mods/jade-addons.pw.toml +++ b/mods/jade-addons.pw.toml @@ -1,13 +1,13 @@ name = "Jade Addons (Forge)" -filename = "JadeAddons-1.19.2-forge-3.4.0.jar" +filename = "JadeAddons-1.19.2-forge-3.5.0.jar" side = "both" [download] hash-format = "sha1" -hash = "742ee48bf5e69b006d42758e2cf48c40cc770ca6" +hash = "8482f8c0641a13c489537954a62dddef48dc1e9b" mode = "metadata:curseforge" [update] [update.curseforge] -file-id = 4375915 +file-id = 4551852 project-id = 583345 diff --git a/mods/john_mod_reborn.pw.toml b/mods/john_mod_reborn.pw.toml index 8829be4..1d7e4cb 100644 --- a/mods/john_mod_reborn.pw.toml +++ b/mods/john_mod_reborn.pw.toml @@ -1,13 +1,13 @@ name = "The John Mod Reborn" -filename = "John_Mod_Reborn_1.0.2_mc1.19.2.jar" +filename = "John_Mod_Reborn_1.0.4_mc1.19.2.jar" side = "both" [download] -url = "https://cdn.modrinth.com/data/wbFL8rKi/versions/xvBPWtkE/John_Mod_Reborn_1.0.2_mc1.19.2.jar" +url = "https://cdn.modrinth.com/data/wbFL8rKi/versions/jsenqclc/John_Mod_Reborn_1.0.4_mc1.19.2.jar" hash-format = "sha1" -hash = "aaeacbd8d77aef106566b19300bb724e88ad3f09" +hash = "a0c7d5513ba4a16618e49cd6a56a2324ae826e17" [update] [update.modrinth] mod-id = "wbFL8rKi" -version = "xvBPWtkE" +version = "jsenqclc" diff --git a/mods/libipn.pw.toml b/mods/libipn.pw.toml index 4cbb7a6..7d7699d 100644 --- a/mods/libipn.pw.toml +++ b/mods/libipn.pw.toml @@ -1,13 +1,13 @@ name = "libIPN" -filename = "libIPN-forge-1.19-2.0.7.jar" +filename = "libIPN-forge-1.19-3.0.1.jar" side = "both" [download] hash-format = "sha1" -hash = "3888731ee718cd50921704047e3b20cfd58fd54f" +hash = "1aa946d3dcf097d1a6580a5aaec91f26a6d0d486" mode = "metadata:curseforge" [update] [update.curseforge] -file-id = 4512911 +file-id = 4546809 project-id = 679177 diff --git a/mods/little-contraptions.pw.toml b/mods/little-contraptions.pw.toml index 67c91b6..b3bae26 100644 --- a/mods/little-contraptions.pw.toml +++ b/mods/little-contraptions.pw.toml @@ -1,13 +1,13 @@ name = "Little Contraptions" -filename = "littlecontraptions-forge-1.19.2.0.jar" +filename = "littlecontraptions-forge-1.19.2.2.jar" side = "both" [download] hash-format = "sha1" -hash = "de26f03b6fe752b4e7191b56bfa550420fcaadeb" +hash = "417526587438a5aa16e4bb267898912038792886" mode = "metadata:curseforge" [update] [update.curseforge] -file-id = 4050984 +file-id = 4567820 project-id = 594563 diff --git a/mods/little-logistics.pw.toml b/mods/little-logistics.pw.toml index 782f444..2e7aa08 100644 --- a/mods/little-logistics.pw.toml +++ b/mods/little-logistics.pw.toml @@ -1,13 +1,13 @@ name = "Little Logistics" -filename = "littlelogistics-mc1.19.2-v1.3.2.jar" +filename = "littlelogistics-mc1.19.2-v1.4.0.jar" side = "both" [download] hash-format = "sha1" -hash = "a2f79e2c0b790a5bc2c5d0aa5837116dbdc2f474" +hash = "83ef07abd1cb7f8e22c1d89fff3cff6ab1f93d59" mode = "metadata:curseforge" [update] [update.curseforge] -file-id = 4446369 +file-id = 4563179 project-id = 570050 diff --git a/mods/macaws-trapdoors.pw.toml b/mods/macaws-trapdoors.pw.toml index 69735f2..dde3ee9 100644 --- a/mods/macaws-trapdoors.pw.toml +++ b/mods/macaws-trapdoors.pw.toml @@ -1,13 +1,13 @@ name = "Macaw's Trapdoors" -filename = "mcw-trapdoors-1.0.9-mc1.19.2forge.jar" +filename = "mcw-trapdoors-1.1.0-mc1.19.2forge.jar" side = "both" [download] hash-format = "sha1" -hash = "b999f57c2ec8de54e26eb52a21a88f06529e85a2" +hash = "af6eba1a4817780e3043463505ea54f5153cafbc" mode = "metadata:curseforge" [update] [update.curseforge] -file-id = 4429507 +file-id = 4543543 project-id = 400933 diff --git a/mods/mindful-darkness.pw.toml b/mods/mindful-darkness.pw.toml index 1154fb1..7379729 100644 --- a/mods/mindful-darkness.pw.toml +++ b/mods/mindful-darkness.pw.toml @@ -1,17 +1,17 @@ name = "Mindful Darkness" -filename = "MindfulDarkness-v4.0.5-1.19.2-Forge.jar" +filename = "MindfulDarkness-v4.0.9-1.19.2-Forge.jar" side = "client" [download] -url = "https://cdn.modrinth.com/data/pzCY6C3e/versions/n5bazwHY/MindfulDarkness-v4.0.5-1.19.2-Forge.jar" +url = "https://cdn.modrinth.com/data/pzCY6C3e/versions/e9dCKW7d/MindfulDarkness-v4.0.9-1.19.2-Forge.jar" hash-format = "sha1" -hash = "c1f6734c3ddfea7747a69b42b8f7c634ce4240c9" - -[option] -optional = true -description = "Enables 'Dark Mode' on all Minecraft GUIs. Configurable for how 'dark' you want it." +hash = "afa2ae787048ee7bcffc600515a5f33ddc97d9f7" [update] [update.modrinth] mod-id = "pzCY6C3e" -version = "n5bazwHY" +version = "e9dCKW7d" + +[option] +optional = true +description = "Enables 'Dark Mode' on all Minecraft GUIs. Configurable for how 'dark' you want it." diff --git a/mods/nomowanderer.pw.toml b/mods/nomowanderer.pw.toml index 0cac6b1..88353bc 100644 --- a/mods/nomowanderer.pw.toml +++ b/mods/nomowanderer.pw.toml @@ -1,13 +1,13 @@ name = "NoMoWanderer" -filename = "nomowanderer-1.19.2_1.3.6.jar" +filename = "nomowanderer-1.19.2_1.3.7.jar" side = "both" [download] hash-format = "sha1" -hash = "52ea691e4be50de771f7cb83f3913c7ac03d591b" +hash = "9da59600273659a909e7ff901801e2b883be915e" mode = "metadata:curseforge" [update] [update.curseforge] -file-id = 4332066 +file-id = 4568214 project-id = 354428 diff --git a/mods/oaks-nature.pw.toml b/mods/oaks-nature.pw.toml new file mode 100644 index 0000000..7e5952f --- /dev/null +++ b/mods/oaks-nature.pw.toml @@ -0,0 +1,13 @@ +name = "Oaks Nature" +filename = "Oaks Nature v0.2.1 (1.19.2).jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "319d06a9f6ec82f0c2396c18a327d3048632ebf3" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 4124613 +project-id = 663065 diff --git a/mods/pams-harvestcraft-2-food-core.pw.toml b/mods/pams-harvestcraft-2-food-core.pw.toml index 643d1f5..5d1d4d0 100644 --- a/mods/pams-harvestcraft-2-food-core.pw.toml +++ b/mods/pams-harvestcraft-2-food-core.pw.toml @@ -1,13 +1,13 @@ name = "Pam's HarvestCraft 2 - Food Core" -filename = "pamhc2foodcore-1.19.2-1.0.0.jar" +filename = "pamhc2foodcore-1.19.2-1.0.1.jar" side = "both" [download] hash-format = "sha1" -hash = "ce129d08ee2aa95f049b18c999377aac0bc4da00" +hash = "92c71fbe2f5a512fadb0cf78dcfa50b446dc8b18" mode = "metadata:curseforge" [update] [update.curseforge] -file-id = 4434697 +file-id = 4540065 project-id = 372534 diff --git a/mods/placebo.pw.toml b/mods/placebo.pw.toml index 230d1a8..d53dad0 100644 --- a/mods/placebo.pw.toml +++ b/mods/placebo.pw.toml @@ -1,13 +1,13 @@ name = "Placebo" -filename = "Placebo-1.19.2-7.1.8.jar" +filename = "Placebo-1.19.2-7.2.0.jar" side = "both" [download] hash-format = "sha1" -hash = "4193c8d94e4646b21f888491438e4ae9dae4de55" +hash = "9184fdb71845b8ae3719810aa679ed6ba716f191" mode = "metadata:curseforge" [update] [update.curseforge] -file-id = 4500148 +file-id = 4546960 project-id = 283644 diff --git a/mods/seamless.pw.toml b/mods/seamless.pw.toml index 001f245..684f5d5 100644 --- a/mods/seamless.pw.toml +++ b/mods/seamless.pw.toml @@ -1,13 +1,13 @@ name = "Seamless" -filename = "seamless-1.1.0-forge-1.19.2.jar" +filename = "seamless-1.3.0-forge-1.19.2.jar" side = "client" [download] -url = "https://cdn.modrinth.com/data/rhyHyQke/versions/KvgFIugE/seamless-1.1.0-forge-1.19.2.jar" +url = "https://cdn.modrinth.com/data/rhyHyQke/versions/6DYPB2ty/seamless-1.3.0-forge-1.19.2.jar" hash-format = "sha1" -hash = "285c180bd0b4fb9610e39536fa62c7f69ddcca1e" +hash = "3b769edd73250bf03ba89747f0987a5bf3c6ee23" [update] [update.modrinth] mod-id = "rhyHyQke" -version = "KvgFIugE" +version = "6DYPB2ty" diff --git a/mods/seasonhud.pw.toml b/mods/seasonhud.pw.toml index 99f1a79..1390983 100644 --- a/mods/seasonhud.pw.toml +++ b/mods/seasonhud.pw.toml @@ -1,13 +1,13 @@ name = "SeasonHUD" -filename = "seasonhud-1.19.2-1.4.14.jar" +filename = "seasonhud-1.19.2-1.4.18.jar" side = "client" [download] hash-format = "sha1" -hash = "26ed42f761d61cb4f8a7953013c517299be27b29" +hash = "21a4a6f6f16a389f796a218d7ef5cc43ec0d163d" mode = "metadata:curseforge" [update] [update.curseforge] -file-id = 4510207 +file-id = 4565986 project-id = 690971 diff --git a/mods/selene.pw.toml b/mods/selene.pw.toml index 2c888c4..b43eb99 100644 --- a/mods/selene.pw.toml +++ b/mods/selene.pw.toml @@ -1,13 +1,13 @@ name = "Moonlight Lib" -filename = "moonlight-1.19.2-2.2.32-forge.jar" +filename = "moonlight-1.19.2-2.2.38-forge.jar" side = "both" [download] hash-format = "sha1" -hash = "cd26ca54441bb5aaee0a7fab440805443dab3846" +hash = "9fb863cd6b300aa099f9a39602ec65c772278fa2" mode = "metadata:curseforge" [update] [update.curseforge] -file-id = 4535354 +file-id = 4569958 project-id = 499980 diff --git a/mods/shetiphiancore.pw.toml b/mods/shetiphiancore.pw.toml index c63df82..5a89b28 100644 --- a/mods/shetiphiancore.pw.toml +++ b/mods/shetiphiancore.pw.toml @@ -1,13 +1,13 @@ name = "ShetiPhianCore" -filename = "shetiphiancore-forge-1.19.0-3.11.3.01.jar" +filename = "shetiphiancore-forge-1.19.0-3.11.3.02.jar" side = "both" [download] hash-format = "sha1" -hash = "628686456f60c709317602f4d471e73895ad1a78" +hash = "8e5fe637ba64e4feb9c425633d409e160f8e754b" mode = "metadata:curseforge" [update] [update.curseforge] -file-id = 4411215 +file-id = 4563326 project-id = 71738 diff --git a/mods/sophisticated-backpacks.pw.toml b/mods/sophisticated-backpacks.pw.toml index 804c18e..776d779 100644 --- a/mods/sophisticated-backpacks.pw.toml +++ b/mods/sophisticated-backpacks.pw.toml @@ -1,13 +1,13 @@ name = "Sophisticated Backpacks" -filename = "sophisticatedbackpacks-1.19.2-3.18.45.819.jar" +filename = "sophisticatedbackpacks-1.19.2-3.18.50.847.jar" side = "both" [download] hash-format = "sha1" -hash = "7a40949884ead6ffbbfaed10ab37461f00525aa0" +hash = "0038961b59e809cbae560104daecc911c0f10ef2" mode = "metadata:curseforge" [update] [update.curseforge] -file-id = 4499805 +file-id = 4566141 project-id = 422301 diff --git a/mods/sophisticated-core.pw.toml b/mods/sophisticated-core.pw.toml index db5605d..c227703 100644 --- a/mods/sophisticated-core.pw.toml +++ b/mods/sophisticated-core.pw.toml @@ -1,13 +1,13 @@ name = "Sophisticated Core" -filename = "sophisticatedcore-1.19.2-0.5.54.261.jar" +filename = "sophisticatedcore-1.19.2-0.5.69.311.jar" side = "both" [download] hash-format = "sha1" -hash = "1ab9729035345c1604aa12706c8d8a4a83b90d3c" +hash = "010308383e2a97ee87be5cc40e792ec419db4afc" mode = "metadata:curseforge" [update] [update.curseforge] -file-id = 4525667 +file-id = 4570381 project-id = 618298 diff --git a/mods/supermartijn642s-core-lib.pw.toml b/mods/supermartijn642s-core-lib.pw.toml index 1d10073..8033eee 100644 --- a/mods/supermartijn642s-core-lib.pw.toml +++ b/mods/supermartijn642s-core-lib.pw.toml @@ -1,13 +1,13 @@ name = "SuperMartijn642's Core Lib" -filename = "supermartijn642corelib-1.1.7-forge-mc1.19.jar" +filename = "supermartijn642corelib-1.1.9a-forge-mc1.19.2.jar" side = "both" [download] -url = "https://cdn.modrinth.com/data/rOUBggPv/versions/LzvMbz0m/supermartijn642corelib-1.1.7-forge-mc1.19.jar" +url = "https://cdn.modrinth.com/data/rOUBggPv/versions/zFYsrv1m/supermartijn642corelib-1.1.9a-forge-mc1.19.2.jar" hash-format = "sha1" -hash = "bdaff70cdb65c9204dc53164f93d82043b4b922a" +hash = "71365a36a5a9fbef89c5400aa2c6fbf12f284cdd" [update] [update.modrinth] mod-id = "rOUBggPv" -version = "LzvMbz0m" +version = "zFYsrv1m" diff --git a/mods/terrablender.pw.toml b/mods/terrablender.pw.toml index ef20ef3..20c7653 100644 --- a/mods/terrablender.pw.toml +++ b/mods/terrablender.pw.toml @@ -1,13 +1,13 @@ name = "TerraBlender (Forge)" -filename = "TerraBlender-forge-1.19.2-2.0.1.136.jar" +filename = "TerraBlender-forge-1.19.2-2.0.1.162.jar" side = "both" [download] hash-format = "sha1" -hash = "62e8ed86eca71f9936be2519092ace11539acc5c" +hash = "5c3451d50a317a48fc0e0add1f76a59821609239" mode = "metadata:curseforge" [update] [update.curseforge] -file-id = 4205732 +file-id = 4567901 project-id = 563928 diff --git a/mods/toms-trading-network.pw.toml b/mods/toms-trading-network.pw.toml index f97ba5c..e0640fd 100644 --- a/mods/toms-trading-network.pw.toml +++ b/mods/toms-trading-network.pw.toml @@ -1,13 +1,13 @@ name = "Tom's Trading Network" -filename = "toms_trading_network-1.19-0.2.0.jar" +filename = "toms_trading_network-1.19-0.2.1.jar" side = "both" [download] -url = "https://cdn.modrinth.com/data/x5iQ3NM5/versions/S6eiOLw8/toms_trading_network-1.19-0.2.0.jar" +url = "https://cdn.modrinth.com/data/x5iQ3NM5/versions/pluyfH6M/toms_trading_network-1.19-0.2.1.jar" hash-format = "sha1" -hash = "b2ad377544e9e2fdf30ee52aa7f6e566acf2b226" +hash = "67c39e4b5afd2980f4b82fd2e01ba3b10642a74c" [update] [update.modrinth] mod-id = "x5iQ3NM5" -version = "S6eiOLw8" +version = "pluyfH6M" diff --git a/mods/torchmaster.pw.toml b/mods/torchmaster.pw.toml index 905319d..8426441 100644 --- a/mods/torchmaster.pw.toml +++ b/mods/torchmaster.pw.toml @@ -1,13 +1,13 @@ name = "Torchmaster" -filename = "torchmaster-19.2.0.jar" +filename = "torchmaster-19.2.90.jar" side = "both" [download] hash-format = "sha1" -hash = "1b030fdbdc5783c0619ccaea8c315820071bb63b" +hash = "c6275f9d8ef59ee6b2e6f1a1f3fa345a985820d2" mode = "metadata:curseforge" [update] [update.curseforge] -file-id = 3965528 +file-id = 4569235 project-id = 254268 diff --git a/pack.toml b/pack.toml index 23c6ddc..b7001bc 100644 --- a/pack.toml +++ b/pack.toml @@ -6,7 +6,7 @@ pack-format = "packwiz:1.1.0" [index] file = "index.toml" hash-format = "sha256" -hash = "126c75f41af59e91756a116ef61d4a28e7ef7ae8e1633ad9d566f4616492f55f" +hash = "06e65b1cb8d22a54d5eae2e98c5e93b6fb063bac0e5e5bbc247874831e74705d" [versions] forge = "43.2.8" From e670479ea3a73e7d088fcd496ff3b57a0dcc45f3 Mon Sep 17 00:00:00 2001 From: Thomas Hinkle Date: Tue, 13 Jun 2023 13:34:11 -0500 Subject: [PATCH 26/36] more mod updates --- CHANGELOG.md | 29 +++++++++++++------- index.toml | 40 ++++++++++++++-------------- mods/collective.pw.toml | 6 ++--- mods/creativecore.pw.toml | 6 ++--- mods/cucumber.pw.toml | 6 ++--- mods/enderchests.pw.toml | 6 ++--- mods/endertanks.pw.toml | 6 ++--- mods/extreme-reactors.pw.toml | 6 ++--- mods/falling-leaves-forge.pw.toml | 6 ++--- mods/fastworkbench.pw.toml | 6 ++--- mods/ftb-chunks-forge.pw.toml | 6 ++--- mods/libipn.pw.toml | 6 ++--- mods/lootr.pw.toml | 6 ++--- mods/maintenancemode.pw.toml | 8 +++--- mods/nomowanderer.pw.toml | 6 ++--- mods/puzzles-lib.pw.toml | 8 +++--- mods/serene-seasons-fix.pw.toml | 6 ++--- mods/shetiphiancore.pw.toml | 6 ++--- mods/sophisticated-backpacks.pw.toml | 6 ++--- mods/sophisticated-core.pw.toml | 6 ++--- mods/spawn-animations.pw.toml | 8 +++--- mods/zerocore.pw.toml | 6 ++--- pack.toml | 2 +- 23 files changed, 104 insertions(+), 93 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index df78a1f..fb1842a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -66,17 +66,24 @@ This will be the initial release for the production server. I will avoid adding - Botany Pots 9.0.31 -> 9.0.33 - Botany Trees 5.0.5 -> 5.0.7 - Canary 0.1.10 -> 0.2.4 +- Collective 6.53 -> 6.57 - Connectivity 3.5 -> 4.2 - Cooking for Blockheads 13.3.1 -> 13.3.2 - Crafting Tweaks 15.1.6 -> 15.1.7 - Create 0.5.0.i -> 0.5.1.b - Create Crafts and Additions 1.19.2-20230411a -> 1.19.2-20230527a - Create Deco 1.3.1 -> 1.3.3 +- CreativeCore 2.9.3 -> 2.9.4 +- Cucumber Library 6.0.6 -> 6.0.7 - Curios API 5.1.4.0 -> 5.1.4.1 - Dark Utilities 13.1.7 -> 13.1.9 -- Extreme Reactors 2.0.62 -> 2.0.63 -- FastWorkbench 7.1.1 -> 7.1.2 +- EnderChests 1.10.1.01 -> 1.10.1.02 +- EnderTanks 1.12.1.02 -> 1.12.1.03 +- Extreme Reactors 2.0.62 -> 2.0.64 +- Falling Leaves (Forge) 2.0.0-alpha+20221129-2000 -> 1.3.1 +- FastWorkbench 7.1.1 -> 7.1.3 - FTB Backups 2 1.0.18 -> 1.0.19 +- FTB Chunks 1902.3.21-build 266 -> 1902.3.22-build 271 - FTB Library (Forge) 1902.3.18-build.208 -> 1902.3.19-build.214 - In Control! 7.1.3 -> 7.1.8 - Inventory Sorter 21.0.4 -> 22.0.0 @@ -85,32 +92,36 @@ This will be the initial release for the production server. I will avoid adding - KleeSlabs 12.2.0 -> 12.3.0 - Konkrete [Forge] 1.6.0 -> 1.6.1 - Kotlin for Forge 3.11.0 -> 3.12.0 -- libIPN 2.0.6 -> 3.0.1 +- libIPN 2.0.6 -> 3.0.2 - Little Contraptions 1.19.2.0 -> 1.19.2.2 - Little Logistics v1.3.2 -> v1.4.0 +- Lootr (Forge) 0.4.23.60 -> 0.4.24.61 - Macaw's Trapdoors 1.0.9 -> 1.1.0 +- Maintenance Mode 1.1.1d -> 1.1.1 - Mindful Darkness 4.0.5 -> 4.0.9 - Moonlight Lib 2.2.31 -> 2.2.38 -- NoMoWanderer 1.3.6 -> 1.3.7 +- NoMoWanderer 1.3.6 -> 1.3.9 - Obscure API 14 -> 15 - Pam's HarvestCraft 2 - Crops 1.0.1 -> 1.0.2 - Pam's HarvestCraft 2 - Food Core 1.0.0 -> 1.0.1 - Placebo 7.1.8 -> 7.2.0 - PneumaticCraft: Repressurized 4.3.3-22 -> 4.3.4-24 +- Puzzles Lib 4.4.0 -> 4.4.1 - RFTools Builder 5.2.6 -> 5.2.8 - Saturn 0.0.3 -> 0.0.4 - Seamless 1.1.0 -> 1.3.0 - SeasonHUD 1.4.12 -> 1.4.18 -- ShetiPhianCore 11.3.01 -> 3.11.3.02 -- Sophisticated Backpacks 3.18.45.819 -> 3.18.50.847 -- Sophisticated Core 0.5.51.251 -> 0.5.69.311 -- Spawn Animations 1.8.2 -> 1.9 +- Serene Seasons Fix 1.0.7 -> 1.0.8 +- ShetiPhianCore 11.3.01 -> 3.11.3.03 +- Sophisticated Backpacks 3.18.45.819 -> 3.18.50.849 +- Sophisticated Core 0.5.51.251 -> 0.5.70.316 +- Spawn Animations 1.8.2 -> 1.9.1 - SuperMartijn642's Core Lib 1.1.7 -> 1.1.9a - TerraBlender (Forge) 2.0.1.136 -> 2.0.1.162 - The John Mod Reborn 1.0.2 -> 1.0.4 - Tom's Trading Network 0.1.0 -> 0.2.1 - Torchmaster 19.2.0 -> 19.2.90 -- ZeroCore 2 2.1.33 -> 2.1.34 +- ZeroCore 2 2.1.33 -> 2.1.35 # 1.0.19 diff --git a/index.toml b/index.toml index 24867e2..5891ef4 100644 --- a/index.toml +++ b/index.toml @@ -288,7 +288,7 @@ metafile = true [[files]] file = "mods/collective.pw.toml" -hash = "98b174f93e1b252b0886521a02f36c04833d63ab832f2008d92d2e7d79c3ed18" +hash = "5f536fdf4605781e92b62b7a949e937c13cb3c73cf511002c32dcef2cef56edd" metafile = true [[files]] @@ -373,7 +373,7 @@ metafile = true [[files]] file = "mods/creativecore.pw.toml" -hash = "27ce0f6ec9e15d9136c369315acc3c5ebd88f0c1ef8c4eb1cc33a636f6694fc1" +hash = "b2a8a34e87a5ffdbfcb35d1df344e630ac968aad359eced94aa58a184f2d3fa8" metafile = true [[files]] @@ -383,7 +383,7 @@ metafile = true [[files]] file = "mods/cucumber.pw.toml" -hash = "b8edd600ef2329ec3f75c6f2fff0649d328ecfcd89b6f6878c0da046ad5daf28" +hash = "7de4d45649ea25e84a3c2b7f978f2d2610925cb2b40695523fea54a8b5c9bc13" metafile = true [[files]] @@ -423,12 +423,12 @@ metafile = true [[files]] file = "mods/enderchests.pw.toml" -hash = "4ddaf5730a18962bd1ae4a1f00857d1a38c9149adc4b2352049a188777bb2893" +hash = "6e17b4821eda72cfe16c10d122bb12f78a89b1a666d1281eb50c3154162c7fe5" metafile = true [[files]] file = "mods/endertanks.pw.toml" -hash = "cc0298b3363bc71d39a9d0c86dbc7e738afc9f59e661869ff814c91bb6bd2005" +hash = "f05ce617894b96bcf3f142fecfe1c5fba6ffd2b23950171c4ce54c3b45076e16" metafile = true [[files]] @@ -448,12 +448,12 @@ metafile = true [[files]] file = "mods/extreme-reactors.pw.toml" -hash = "a5862f6a5ca9ab9fc36150e0adbdc3e8cca375e6c3187087477168f2bb7142a0" +hash = "2712b3c4a087624b871bc6d9e7a940f0def8cefaaabafca01c35bb3c453ce317" metafile = true [[files]] file = "mods/falling-leaves-forge.pw.toml" -hash = "860fbe14f20d3a7d73e0219317afaab6964e4635c14698db3c7f70cb230a6e6f" +hash = "53105dea5f7bf34ba486b9c9a45eb7e6e11c0339a2e58d6fae05f37fe6c9a45d" metafile = true [[files]] @@ -478,7 +478,7 @@ metafile = true [[files]] file = "mods/fastworkbench.pw.toml" -hash = "ab09ecf0f07ee64186802e309c196c27337ff092eac196fa5f9c80b5a287badf" +hash = "05ba0e63b05f5b98111cfbe0b16411688b6ff7ffd675e2fd0ec5249709cc5b97" metafile = true [[files]] @@ -508,7 +508,7 @@ metafile = true [[files]] file = "mods/ftb-chunks-forge.pw.toml" -hash = "230559680c828e89d7ca1b986fce0d29f73502565e7ced4f6deb0a52d1628741" +hash = "41930c5f6ac5c7309a08cab37bec4538b4e9f0a87c400e69ed8ee9807e0f1078" metafile = true [[files]] @@ -648,7 +648,7 @@ metafile = true [[files]] file = "mods/libipn.pw.toml" -hash = "3b9f5b67f80eb8c690dc29d08e6a8769a9dbe88a00b41e435fcdc2e1ed1c9159" +hash = "f2563731c68f89827061c27dd2bffb07023e69daf6ea7fb04bf3eea6d57e8992" metafile = true [[files]] @@ -678,7 +678,7 @@ metafile = true [[files]] file = "mods/lootr.pw.toml" -hash = "dfaef78e5e9b6078581105a50b06b94bb4cfaf1be07b5919567d99d7580e6264" +hash = "421b20e8552643a3e91e15fe300a45e58a32eef7de8c60af1d0a6bca2c0d2823" metafile = true [[files]] @@ -733,7 +733,7 @@ metafile = true [[files]] file = "mods/maintenancemode.pw.toml" -hash = "4ac2f64b8b6579ddf48f1301bfec97eda328217ded3031d2cce56d584adb2745" +hash = "fae365c74bba40dbe29da359cf6ddfb063079daa89c27ce4ec0bdf3fd286998b" metafile = true [[files]] @@ -823,7 +823,7 @@ metafile = true [[files]] file = "mods/nomowanderer.pw.toml" -hash = "3b0855bb4c78b834ef5446490fccebda538991d5640fdf2877492e1491a1f271" +hash = "8e08d9abf6fe745d1565d6233d45fde681ba5e0eab5f195c29040e389065e774" metafile = true [[files]] @@ -933,7 +933,7 @@ metafile = true [[files]] file = "mods/puzzles-lib.pw.toml" -hash = "a1304b946d3beb3f9c5b9fc98531e2d1f486340e9fdcbd89a76892115a74e1d2" +hash = "6859437801a55d18103ec536642c74bd946048add6c67c50c1690c10ed6d95df" metafile = true [[files]] @@ -1078,7 +1078,7 @@ metafile = true [[files]] file = "mods/serene-seasons-fix.pw.toml" -hash = "8aefa280b59db655a46958e53ab7171d7256b95710c750b55ba9ab48810b94a9" +hash = "8063f6e940c6280fc0f1da5a611048eb5ab49a2c70b767f6dec82aa283b625cc" metafile = true [[files]] @@ -1088,7 +1088,7 @@ metafile = true [[files]] file = "mods/shetiphiancore.pw.toml" -hash = "ed0a5a02920d7836c307bef6af23c977b1d2cea10dbe089c953a75daf9839243" +hash = "7e52fe08dff06c5f76fbb471fd316c382e0e824b5734561279fcf8da814e438c" metafile = true [[files]] @@ -1108,12 +1108,12 @@ metafile = true [[files]] file = "mods/sophisticated-backpacks.pw.toml" -hash = "318ac48f5a673d2b91bb1824f45179639c66e8d42ea225fe97fb16016a2e8587" +hash = "f4c06b76d30313faed5afba11f2e1b863208f119b6a373e3a29021d110a3cf27" metafile = true [[files]] file = "mods/sophisticated-core.pw.toml" -hash = "0f2614f177b9a36a332bc30f0d7500d3866dc0ed5f4b6963beadfab88554175c" +hash = "939d720cc5bc8662fc0e762e6c78e0028b427282f700b3ac37863be6e74568f3" metafile = true [[files]] @@ -1123,7 +1123,7 @@ metafile = true [[files]] file = "mods/spawn-animations.pw.toml" -hash = "1759a8b2e4ae795747f3438a69d513040c5f24d7faf5d59dce85fdb0f34ec67d" +hash = "e0abd290de019a8918b8f7f68bdc7a63ed43921082a8f70ef6cba99bf3582784" metafile = true [[files]] @@ -1278,7 +1278,7 @@ metafile = true [[files]] file = "mods/zerocore.pw.toml" -hash = "69c88de3ecc6dc7b90ad1b3e87dc428cf88676b350364d8304eeb3480a2a41b3" +hash = "278065e63a62ec867f5a00aab8f8dd874d3dd5412cb0f5cae5f04974f958c004" metafile = true [[files]] diff --git a/mods/collective.pw.toml b/mods/collective.pw.toml index 02cc6f8..8a71323 100644 --- a/mods/collective.pw.toml +++ b/mods/collective.pw.toml @@ -1,13 +1,13 @@ name = "Collective" -filename = "collective-1.19.2-6.53.jar" +filename = "collective-1.19.2-6.57.jar" side = "both" [download] hash-format = "sha1" -hash = "fdb545999dde092a17c56ba30491cdcdb6226f1e" +hash = "71e3bca6015f6e0c608b426626adc669252214d3" mode = "metadata:curseforge" [update] [update.curseforge] -file-id = 4436952 +file-id = 4574094 project-id = 342584 diff --git a/mods/creativecore.pw.toml b/mods/creativecore.pw.toml index 697b639..5e9e36e 100644 --- a/mods/creativecore.pw.toml +++ b/mods/creativecore.pw.toml @@ -1,13 +1,13 @@ name = "CreativeCore" -filename = "CreativeCore_FORGE_v2.9.3_mc1.19.2.jar" +filename = "CreativeCore_FORGE_v2.9.4_mc1.19.2.jar" side = "both" [download] hash-format = "sha1" -hash = "23496715e8943113fb71a436604e2e98bd88e573" +hash = "5d4069a31c0b1caac6e1144507b3afe1e6a7a950" mode = "metadata:curseforge" [update] [update.curseforge] -file-id = 4121643 +file-id = 4584615 project-id = 257814 diff --git a/mods/cucumber.pw.toml b/mods/cucumber.pw.toml index 96d5388..2608073 100644 --- a/mods/cucumber.pw.toml +++ b/mods/cucumber.pw.toml @@ -1,13 +1,13 @@ name = "Cucumber Library" -filename = "Cucumber-1.19.2-6.0.6.jar" +filename = "Cucumber-1.19.2-6.0.7.jar" side = "both" [download] hash-format = "sha1" -hash = "60f73705609ae9b80ce8fc1b0a185ecc5b8d6d30" +hash = "a2f611d32ae4ff483227ff75d7bac5aecfc3addc" mode = "metadata:curseforge" [update] [update.curseforge] -file-id = 4395460 +file-id = 4576530 project-id = 272335 diff --git a/mods/enderchests.pw.toml b/mods/enderchests.pw.toml index 1b56d84..3656e3e 100644 --- a/mods/enderchests.pw.toml +++ b/mods/enderchests.pw.toml @@ -1,13 +1,13 @@ name = "EnderChests" -filename = "enderchests-forge-1.19.0-1.10.1.01.jar" +filename = "enderchests-forge-1.19.0-1.10.1.02.jar" side = "both" [download] hash-format = "sha1" -hash = "4f04e0ce00ed6810015c2ed7f3ad34cdf2b37ddf" +hash = "633ca44779ecc6037037fe8fe10f82422080bb4e" mode = "metadata:curseforge" [update] [update.curseforge] -file-id = 4411264 +file-id = 4577284 project-id = 363535 diff --git a/mods/endertanks.pw.toml b/mods/endertanks.pw.toml index d9f2641..4c01f31 100644 --- a/mods/endertanks.pw.toml +++ b/mods/endertanks.pw.toml @@ -1,13 +1,13 @@ name = "EnderTanks" -filename = "endertanks-forge-1.19.0-1.12.1.02.jar" +filename = "endertanks-forge-1.19.0-1.12.1.03.jar" side = "both" [download] hash-format = "sha1" -hash = "e2a458ffef86d606a397c0a025f271b74c3e3154" +hash = "01f8bf196bbe2cea5c0efc1eca33eef7c1014f26" mode = "metadata:curseforge" [update] [update.curseforge] -file-id = 4420085 +file-id = 4577294 project-id = 59613 diff --git a/mods/extreme-reactors.pw.toml b/mods/extreme-reactors.pw.toml index 1d4daf9..619752b 100644 --- a/mods/extreme-reactors.pw.toml +++ b/mods/extreme-reactors.pw.toml @@ -1,13 +1,13 @@ name = "Extreme Reactors" -filename = "ExtremeReactors2-1.19.2-2.0.63.jar" +filename = "ExtremeReactors2-1.19.2-2.0.64.jar" side = "both" [download] hash-format = "sha1" -hash = "7f13e9125882c7a4c8ed931f92bf4f4dcc5fceba" +hash = "da0236322680525ef9ef70a4e747c19bcdf9e366" mode = "metadata:curseforge" [update] [update.curseforge] -file-id = 4526683 +file-id = 4571452 project-id = 250277 diff --git a/mods/falling-leaves-forge.pw.toml b/mods/falling-leaves-forge.pw.toml index 599927c..2f368eb 100644 --- a/mods/falling-leaves-forge.pw.toml +++ b/mods/falling-leaves-forge.pw.toml @@ -1,13 +1,13 @@ name = "Falling Leaves (Forge)" -filename = "Fallingleaves-1.19.1-2.0.0-alpha+20221129-2000.jar" +filename = "Fallingleaves-1.19.1-1.3.1.jar" side = "both" [download] hash-format = "sha1" -hash = "80155f30fb788efb3c8b534a52767a022befe9f7" +hash = "a01e5f63d4def0940418c4cf0d4d8d0f78000102" mode = "metadata:curseforge" [update] [update.curseforge] -file-id = 4124035 +file-id = 3965374 project-id = 463155 diff --git a/mods/fastworkbench.pw.toml b/mods/fastworkbench.pw.toml index f7aac1d..d7e4692 100644 --- a/mods/fastworkbench.pw.toml +++ b/mods/fastworkbench.pw.toml @@ -1,13 +1,13 @@ name = "FastWorkbench" -filename = "FastWorkbench-1.19.2-7.1.2.jar" +filename = "FastWorkbench-1.19.2-7.1.3.jar" side = "both" [download] hash-format = "sha1" -hash = "3ab2e95727806a714fd0b015f27d3050ef091e50" +hash = "570b92e7eb9fda47d93bcf1003f5d63c287ba014" mode = "metadata:curseforge" [update] [update.curseforge] -file-id = 4508990 +file-id = 4579504 project-id = 288885 diff --git a/mods/ftb-chunks-forge.pw.toml b/mods/ftb-chunks-forge.pw.toml index 6ed782c..ba4d0fb 100644 --- a/mods/ftb-chunks-forge.pw.toml +++ b/mods/ftb-chunks-forge.pw.toml @@ -1,13 +1,13 @@ name = "FTB Chunks (Forge)" -filename = "ftb-chunks-forge-1902.3.21-build.266.jar" +filename = "ftb-chunks-forge-1902.3.22-build.271.jar" side = "both" [download] hash-format = "sha1" -hash = "6d7a904c63bd6ba3b36d89dae9a0e5a1ac8b581d" +hash = "ce72b7b56b5ec3edc2599a5e94219be09722b89a" mode = "metadata:curseforge" [update] [update.curseforge] -file-id = 4496315 +file-id = 4584683 project-id = 314906 diff --git a/mods/libipn.pw.toml b/mods/libipn.pw.toml index 7d7699d..b9656bb 100644 --- a/mods/libipn.pw.toml +++ b/mods/libipn.pw.toml @@ -1,13 +1,13 @@ name = "libIPN" -filename = "libIPN-forge-1.19-3.0.1.jar" +filename = "libIPN-forge-1.19-3.0.2.jar" side = "both" [download] hash-format = "sha1" -hash = "1aa946d3dcf097d1a6580a5aaec91f26a6d0d486" +hash = "8c6dafcd1488c91173095e04decedff293bf7bca" mode = "metadata:curseforge" [update] [update.curseforge] -file-id = 4546809 +file-id = 4574571 project-id = 679177 diff --git a/mods/lootr.pw.toml b/mods/lootr.pw.toml index b7ecd25..64c088f 100644 --- a/mods/lootr.pw.toml +++ b/mods/lootr.pw.toml @@ -1,13 +1,13 @@ name = "Lootr (Forge)" -filename = "lootr-1.19-0.4.23.60.jar" +filename = "lootr-1.19-0.4.24.61.jar" side = "both" [download] hash-format = "sha1" -hash = "b550fa59d41349d2e327b9aa24abd17aa3cb88d9" +hash = "7f11d2505a4f535b626a0a0310e9dce41470dfa1" mode = "metadata:curseforge" [update] [update.curseforge] -file-id = 4465109 +file-id = 4581859 project-id = 361276 diff --git a/mods/maintenancemode.pw.toml b/mods/maintenancemode.pw.toml index 7a7f168..985c362 100644 --- a/mods/maintenancemode.pw.toml +++ b/mods/maintenancemode.pw.toml @@ -1,13 +1,13 @@ name = "Maintenance Mode" -filename = "mmode-forge-1.19-1.1.1d.jar" +filename = "mmode-forge-1.19-1.1.1.jar" side = "server" [download] -url = "https://cdn.modrinth.com/data/QOkEkSap/versions/9ywi0cUJ/mmode-forge-1.19-1.1.1d.jar" +url = "https://cdn.modrinth.com/data/QOkEkSap/versions/Ut0i1Ced/mmode-forge-1.19-1.1.1.jar" hash-format = "sha1" -hash = "5ee03d6fe8e8ec6c32f64cd115a4efae641254f6" +hash = "d777e5f2c7b459b136b9b92ec9572ac0cbd2d5da" [update] [update.modrinth] mod-id = "QOkEkSap" -version = "9ywi0cUJ" +version = "Ut0i1Ced" diff --git a/mods/nomowanderer.pw.toml b/mods/nomowanderer.pw.toml index 88353bc..7700937 100644 --- a/mods/nomowanderer.pw.toml +++ b/mods/nomowanderer.pw.toml @@ -1,13 +1,13 @@ name = "NoMoWanderer" -filename = "nomowanderer-1.19.2_1.3.7.jar" +filename = "nomowanderer-1.19.2_1.3.9.jar" side = "both" [download] hash-format = "sha1" -hash = "9da59600273659a909e7ff901801e2b883be915e" +hash = "a20a1fb7599883ec1a1e11aa9df1fe2ef23bf4ff" mode = "metadata:curseforge" [update] [update.curseforge] -file-id = 4568214 +file-id = 4578497 project-id = 354428 diff --git a/mods/puzzles-lib.pw.toml b/mods/puzzles-lib.pw.toml index f88b3d8..9eb79c6 100644 --- a/mods/puzzles-lib.pw.toml +++ b/mods/puzzles-lib.pw.toml @@ -1,13 +1,13 @@ name = "Puzzles Lib" -filename = "PuzzlesLib-v4.4.0-1.19.2-Forge.jar" +filename = "PuzzlesLib-v4.4.1-1.19.2-Forge.jar" side = "both" [download] -url = "https://cdn.modrinth.com/data/QAGBst4M/versions/NjsLQCQh/PuzzlesLib-v4.4.0-1.19.2-Forge.jar" +url = "https://cdn.modrinth.com/data/QAGBst4M/versions/SuhOII0F/PuzzlesLib-v4.4.1-1.19.2-Forge.jar" hash-format = "sha1" -hash = "d7f584edb68672d838fa68caf315e5cbb19d590d" +hash = "60d2b3a50dc813dcf8beb319bec2c6741d0dc366" [update] [update.modrinth] mod-id = "QAGBst4M" -version = "NjsLQCQh" +version = "SuhOII0F" diff --git a/mods/serene-seasons-fix.pw.toml b/mods/serene-seasons-fix.pw.toml index 3e142c5..725b548 100644 --- a/mods/serene-seasons-fix.pw.toml +++ b/mods/serene-seasons-fix.pw.toml @@ -1,13 +1,13 @@ name = "Serene Seasons Fix" -filename = "sereneseasonfix-1.19.2-1.0.7.jar" +filename = "sereneseasonfix-1.19.2-1.0.8.jar" side = "both" [download] hash-format = "sha1" -hash = "6a53dfe4b70a04b3878f3e7283b406aa7a98ed0e" +hash = "d97bbd7f1cf57ccf7b2481fef0386220f8c2f360" mode = "metadata:curseforge" [update] [update.curseforge] -file-id = 4329248 +file-id = 4582207 project-id = 650658 diff --git a/mods/shetiphiancore.pw.toml b/mods/shetiphiancore.pw.toml index 5a89b28..0057835 100644 --- a/mods/shetiphiancore.pw.toml +++ b/mods/shetiphiancore.pw.toml @@ -1,13 +1,13 @@ name = "ShetiPhianCore" -filename = "shetiphiancore-forge-1.19.0-3.11.3.02.jar" +filename = "shetiphiancore-forge-1.19.0-3.11.3.03.jar" side = "both" [download] hash-format = "sha1" -hash = "8e5fe637ba64e4feb9c425633d409e160f8e754b" +hash = "b810023c34d40ecfb248c3885131b2842a97810e" mode = "metadata:curseforge" [update] [update.curseforge] -file-id = 4563326 +file-id = 4577274 project-id = 71738 diff --git a/mods/sophisticated-backpacks.pw.toml b/mods/sophisticated-backpacks.pw.toml index 776d779..63d320c 100644 --- a/mods/sophisticated-backpacks.pw.toml +++ b/mods/sophisticated-backpacks.pw.toml @@ -1,13 +1,13 @@ name = "Sophisticated Backpacks" -filename = "sophisticatedbackpacks-1.19.2-3.18.50.847.jar" +filename = "sophisticatedbackpacks-1.19.2-3.18.50.849.jar" side = "both" [download] hash-format = "sha1" -hash = "0038961b59e809cbae560104daecc911c0f10ef2" +hash = "3e92066f0fca124736659d44bac62c33506d7b03" mode = "metadata:curseforge" [update] [update.curseforge] -file-id = 4566141 +file-id = 4571825 project-id = 422301 diff --git a/mods/sophisticated-core.pw.toml b/mods/sophisticated-core.pw.toml index c227703..d5fbac7 100644 --- a/mods/sophisticated-core.pw.toml +++ b/mods/sophisticated-core.pw.toml @@ -1,13 +1,13 @@ name = "Sophisticated Core" -filename = "sophisticatedcore-1.19.2-0.5.69.311.jar" +filename = "sophisticatedcore-1.19.2-0.5.70.316.jar" side = "both" [download] hash-format = "sha1" -hash = "010308383e2a97ee87be5cc40e792ec419db4afc" +hash = "dc63a7bdecc3984a49698272d37d1b53247e15db" mode = "metadata:curseforge" [update] [update.curseforge] -file-id = 4570381 +file-id = 4584151 project-id = 618298 diff --git a/mods/spawn-animations.pw.toml b/mods/spawn-animations.pw.toml index 5df4247..66f651c 100644 --- a/mods/spawn-animations.pw.toml +++ b/mods/spawn-animations.pw.toml @@ -1,13 +1,13 @@ name = "Spawn Animations" -filename = "spawn-animations-1.9.jar" +filename = "spawn-animations-1.9.1.jar" side = "both" [download] -url = "https://cdn.modrinth.com/data/zrzYrlm0/versions/H71wYhEG/spawn-animations-1.9.jar" +url = "https://cdn.modrinth.com/data/zrzYrlm0/versions/id5iTpik/spawn-animations-1.9.1.jar" hash-format = "sha1" -hash = "e9c74ee26abbb1064f762ed970c22b29ab44358e" +hash = "59a0e4aaa20e76f255f2d982220d638602eb9478" [update] [update.modrinth] mod-id = "zrzYrlm0" -version = "H71wYhEG" +version = "id5iTpik" diff --git a/mods/zerocore.pw.toml b/mods/zerocore.pw.toml index 7ee0b75..8d2988f 100644 --- a/mods/zerocore.pw.toml +++ b/mods/zerocore.pw.toml @@ -1,13 +1,13 @@ name = "ZeroCore 2" -filename = "ZeroCore2-1.19.2-2.1.34.jar" +filename = "ZeroCore2-1.19.2-2.1.35.jar" side = "both" [download] hash-format = "sha1" -hash = "331e04cc45f0b7a736d59f5c827aac3d1fae81b5" +hash = "562b937a9bfc909792436b34cd283945f012dbb6" mode = "metadata:curseforge" [update] [update.curseforge] -file-id = 4526681 +file-id = 4571451 project-id = 247921 diff --git a/pack.toml b/pack.toml index b7001bc..d40e29e 100644 --- a/pack.toml +++ b/pack.toml @@ -6,7 +6,7 @@ pack-format = "packwiz:1.1.0" [index] file = "index.toml" hash-format = "sha256" -hash = "06e65b1cb8d22a54d5eae2e98c5e93b6fb063bac0e5e5bbc247874831e74705d" +hash = "49b3ac6f770a7ed4934be15b9371ea7c1f6a1cf741d97268042c73a0b19bafc2" [versions] forge = "43.2.8" From 5f5f164e4eac881a1a4fc5de44ea865180cdac30 Mon Sep 17 00:00:00 2001 From: Thomas Hinkle Date: Sat, 17 Jun 2023 22:18:45 -0500 Subject: [PATCH 27/36] updated some mods --- CHANGELOG.md | 11 +++++++---- index.toml | 19 ++++++++++++------- mods/almost-unified.pw.toml | 6 +++--- mods/canary.pw.toml | 6 +++--- mods/creeper-ai-updated.pw.toml | 13 +++++++++++++ mods/kubejs-create.pw.toml | 6 +++--- mods/macaws-paths-and-pavings.pw.toml | 6 +++--- mods/macaws-roofs.pw.toml | 6 +++--- mods/puzzles-lib.pw.toml | 8 ++++---- mods/sophisticated-core.pw.toml | 6 +++--- pack.toml | 2 +- 11 files changed, 55 insertions(+), 34 deletions(-) create mode 100644 mods/creeper-ai-updated.pw.toml diff --git a/CHANGELOG.md b/CHANGELOG.md index fb1842a..f924f2b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -58,14 +58,14 @@ This will be the initial release for the production server. I will avoid adding - Additional Enchanted Miner 1192.1.0 -> 1192.1.1 - Advanced Peripherals 0.7.27r -> 0.7.28r -- Almost Unified 0.4.2 -> 0.4.4 +- Almost Unified 0.4.2 -> 0.5.0 - Aquamirae 5.6.API14 -> 6.API15 - Architectury API 6.5.77 -> 6.5.85 - Bookshelf 16.2.18 -> 16.3.20 - Botania 1.19.2-438 -> 1.19.2.440 - Botany Pots 9.0.31 -> 9.0.33 - Botany Trees 5.0.5 -> 5.0.7 -- Canary 0.1.10 -> 0.2.4 +- Canary 0.1.10 -> 0.2.7 - Collective 6.53 -> 6.57 - Connectivity 3.5 -> 4.2 - Cooking for Blockheads 13.3.1 -> 13.3.2 @@ -92,10 +92,13 @@ This will be the initial release for the production server. I will avoid adding - KleeSlabs 12.2.0 -> 12.3.0 - Konkrete [Forge] 1.6.0 -> 1.6.1 - Kotlin for Forge 3.11.0 -> 3.12.0 +- KubeJS Create 1902.1.1-build 35 -> 1902.2.4-build 9 - libIPN 2.0.6 -> 3.0.2 - Little Contraptions 1.19.2.0 -> 1.19.2.2 - Little Logistics v1.3.2 -> v1.4.0 - Lootr (Forge) 0.4.23.60 -> 0.4.24.61 +- Macaw's Paths and Pavings 1.0.2 -> 1.0.3 +- Macaw's Roofs 2.2.3 -> 2.2.4 - Macaw's Trapdoors 1.0.9 -> 1.1.0 - Maintenance Mode 1.1.1d -> 1.1.1 - Mindful Darkness 4.0.5 -> 4.0.9 @@ -106,7 +109,7 @@ This will be the initial release for the production server. I will avoid adding - Pam's HarvestCraft 2 - Food Core 1.0.0 -> 1.0.1 - Placebo 7.1.8 -> 7.2.0 - PneumaticCraft: Repressurized 4.3.3-22 -> 4.3.4-24 -- Puzzles Lib 4.4.0 -> 4.4.1 +- Puzzles Lib 4.4.0 -> 4.4.2 - RFTools Builder 5.2.6 -> 5.2.8 - Saturn 0.0.3 -> 0.0.4 - Seamless 1.1.0 -> 1.3.0 @@ -114,7 +117,7 @@ This will be the initial release for the production server. I will avoid adding - Serene Seasons Fix 1.0.7 -> 1.0.8 - ShetiPhianCore 11.3.01 -> 3.11.3.03 - Sophisticated Backpacks 3.18.45.819 -> 3.18.50.849 -- Sophisticated Core 0.5.51.251 -> 0.5.70.316 +- Sophisticated Core 0.5.51.251 -> 0.5.71.319 - Spawn Animations 1.8.2 -> 1.9.1 - SuperMartijn642's Core Lib 1.1.7 -> 1.1.9a - TerraBlender (Forge) 2.0.1.136 -> 2.0.1.162 diff --git a/index.toml b/index.toml index 5891ef4..3da4a19 100644 --- a/index.toml +++ b/index.toml @@ -148,7 +148,7 @@ metafile = true [[files]] file = "mods/almost-unified.pw.toml" -hash = "6da1f9825e32456bc7fddc7355db319529cc56089900cce016fe671306202f68" +hash = "eee543d5df77eb92c79d0ee76ff4302fe7350d8283da2c7c05ef4c74edc294e7" metafile = true [[files]] @@ -248,7 +248,7 @@ metafile = true [[files]] file = "mods/canary.pw.toml" -hash = "954db250d3d26937d4e62095a336f9c072d3e4ae441d8f71570d63ebcd1b4f83" +hash = "8b9ca62e9e45a92769faee6517dac6ea1f5bda96a50c35fc492fb76ef480897c" metafile = true [[files]] @@ -376,6 +376,11 @@ file = "mods/creativecore.pw.toml" hash = "b2a8a34e87a5ffdbfcb35d1df344e630ac968aad359eced94aa58a184f2d3fa8" metafile = true +[[files]] +file = "mods/creeper-ai-updated.pw.toml" +hash = "2e886728fea0e8bd001f824ff4bee60c01c4c47d2a41fdd596eb5d40c1d178ec" +metafile = true + [[files]] file = "mods/creeper-overhaul.pw.toml" hash = "9b6eba81b6899e5b6961cdb6533a8dc9844baf91671048b0313fb1deb0c525c5" @@ -633,7 +638,7 @@ metafile = true [[files]] file = "mods/kubejs-create.pw.toml" -hash = "666393d8db2a7f4efd6073d474f23a85b4624aabcf6270f9eda0a444b382e5b4" +hash = "b031093f843c1f7d382d41750bccb584f7b2022bb294eb5b3f84c0b6f60c0418" metafile = true [[files]] @@ -713,12 +718,12 @@ metafile = true [[files]] file = "mods/macaws-paths-and-pavings.pw.toml" -hash = "7f0fdcb05f21e5c6d86beedefca4c2e60d87ede97de306bc85ed10a646e67227" +hash = "1fad7040942ef6e2cdcc6b8c7357d28a1178a616445e522fc4d333e95d80c515" metafile = true [[files]] file = "mods/macaws-roofs.pw.toml" -hash = "b2d7d550238a9224ad82f0db86e9dcb0b038eaa91f5a7d563bdca6887f3d8c52" +hash = "907402d6346b305f919727fcb4c49a971025af93b7f119768e3c056da7a24f35" metafile = true [[files]] @@ -933,7 +938,7 @@ metafile = true [[files]] file = "mods/puzzles-lib.pw.toml" -hash = "6859437801a55d18103ec536642c74bd946048add6c67c50c1690c10ed6d95df" +hash = "5e7aaa5b97e7c65e9db5fb42ed3f411c901609b414c4b0eb1c081db96d16198b" metafile = true [[files]] @@ -1113,7 +1118,7 @@ metafile = true [[files]] file = "mods/sophisticated-core.pw.toml" -hash = "939d720cc5bc8662fc0e762e6c78e0028b427282f700b3ac37863be6e74568f3" +hash = "d0a7ce24e946a5a9783db5bd2c7f518a173c4808e7733529255a7d95d24f57fc" metafile = true [[files]] diff --git a/mods/almost-unified.pw.toml b/mods/almost-unified.pw.toml index 628348e..a7c36f4 100644 --- a/mods/almost-unified.pw.toml +++ b/mods/almost-unified.pw.toml @@ -1,13 +1,13 @@ name = "Almost Unified" -filename = "almostunified-forge-1.19.2-0.4.4.jar" +filename = "almostunified-forge-1.19.2-0.5.0.jar" side = "both" [download] hash-format = "sha1" -hash = "1d27e7c16d6db623731f7ff88df03c9532680715" +hash = "a5e89e47bb7e9650fb4765fcbea2e4d29f04fa0e" mode = "metadata:curseforge" [update] [update.curseforge] -file-id = 4522173 +file-id = 4586195 project-id = 633823 diff --git a/mods/canary.pw.toml b/mods/canary.pw.toml index 6a8d858..bb58ce6 100644 --- a/mods/canary.pw.toml +++ b/mods/canary.pw.toml @@ -1,13 +1,13 @@ name = "Canary" -filename = "canary-mc1.19.2-0.2.4.jar" +filename = "canary-mc1.19.2-0.2.7.jar" side = "both" [download] hash-format = "sha1" -hash = "838760e262234a69f7dd4fb159a327229a92b414" +hash = "4042eedfed80b07e806b528a097ce0c09ae5ad59" mode = "metadata:curseforge" [update] [update.curseforge] -file-id = 4551264 +file-id = 4588498 project-id = 665658 diff --git a/mods/creeper-ai-updated.pw.toml b/mods/creeper-ai-updated.pw.toml new file mode 100644 index 0000000..2788c24 --- /dev/null +++ b/mods/creeper-ai-updated.pw.toml @@ -0,0 +1,13 @@ +name = "Creeper AI Updated" +filename = "creeperaiupdated-forge-1.5.2.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/YnAkda0q/versions/n0S2wlok/creeperaiupdated-forge-1.5.2.jar" +hash-format = "sha1" +hash = "eae0280c1d053c5dae1c716131e8fabd2f37a881" + +[update] +[update.modrinth] +mod-id = "YnAkda0q" +version = "n0S2wlok" diff --git a/mods/kubejs-create.pw.toml b/mods/kubejs-create.pw.toml index 5252e8e..cb2eda9 100644 --- a/mods/kubejs-create.pw.toml +++ b/mods/kubejs-create.pw.toml @@ -1,13 +1,13 @@ name = "KubeJS Create" -filename = "kubejs-create-forge-1902.1.1-build.35.jar" +filename = "kubejs-create-forge-1902.2.4-build.9.jar" side = "both" [download] hash-format = "sha1" -hash = "93f9698c76ecaa186837ef57fd43ee64ca089471" +hash = "f9f46882b91dae67a15c231acd2e2b9885cfc6f9" mode = "metadata:curseforge" [update] [update.curseforge] -file-id = 4483304 +file-id = 4586386 project-id = 429371 diff --git a/mods/macaws-paths-and-pavings.pw.toml b/mods/macaws-paths-and-pavings.pw.toml index 8fc2467..b3dc15a 100644 --- a/mods/macaws-paths-and-pavings.pw.toml +++ b/mods/macaws-paths-and-pavings.pw.toml @@ -1,13 +1,13 @@ name = "Macaw's Paths and Pavings" -filename = "mcw-paths-1.0.2forge-mc1.19.2.jar" +filename = "mcw-paths-1.0.3forge-mc1.19.2.jar" side = "both" [download] hash-format = "sha1" -hash = "ab4cf93b7fe55f4d6312f645e48b0ad0b35fd08a" +hash = "9dd514e93f1a2ce7db7051960328261c952fb1a6" mode = "metadata:curseforge" [update] [update.curseforge] -file-id = 4126526 +file-id = 4585116 project-id = 629153 diff --git a/mods/macaws-roofs.pw.toml b/mods/macaws-roofs.pw.toml index f28fac6..0faa918 100644 --- a/mods/macaws-roofs.pw.toml +++ b/mods/macaws-roofs.pw.toml @@ -1,13 +1,13 @@ name = "Macaw's Roofs" -filename = "mcw-roofs-2.2.3-mc1.19.2forge.jar" +filename = "mcw-roofs-2.2.4-mc1.19.2forge.jar" side = "both" [download] hash-format = "sha1" -hash = "bdc13de1d49d2e8183e3b8fb021b125f16370122" +hash = "28f80a9a4664bb5978ef4a65888c81ef2f4eb5e9" mode = "metadata:curseforge" [update] [update.curseforge] -file-id = 4429466 +file-id = 4590028 project-id = 352039 diff --git a/mods/puzzles-lib.pw.toml b/mods/puzzles-lib.pw.toml index 9eb79c6..d978c3b 100644 --- a/mods/puzzles-lib.pw.toml +++ b/mods/puzzles-lib.pw.toml @@ -1,13 +1,13 @@ name = "Puzzles Lib" -filename = "PuzzlesLib-v4.4.1-1.19.2-Forge.jar" +filename = "PuzzlesLib-v4.4.2-1.19.2-Forge.jar" side = "both" [download] -url = "https://cdn.modrinth.com/data/QAGBst4M/versions/SuhOII0F/PuzzlesLib-v4.4.1-1.19.2-Forge.jar" +url = "https://cdn.modrinth.com/data/QAGBst4M/versions/Bp8RvlYw/PuzzlesLib-v4.4.2-1.19.2-Forge.jar" hash-format = "sha1" -hash = "60d2b3a50dc813dcf8beb319bec2c6741d0dc366" +hash = "0969e4aaa556bff32e448c20a4145a670f76b2f3" [update] [update.modrinth] mod-id = "QAGBst4M" -version = "SuhOII0F" +version = "Bp8RvlYw" diff --git a/mods/sophisticated-core.pw.toml b/mods/sophisticated-core.pw.toml index d5fbac7..bf80593 100644 --- a/mods/sophisticated-core.pw.toml +++ b/mods/sophisticated-core.pw.toml @@ -1,13 +1,13 @@ name = "Sophisticated Core" -filename = "sophisticatedcore-1.19.2-0.5.70.316.jar" +filename = "sophisticatedcore-1.19.2-0.5.71.319.jar" side = "both" [download] hash-format = "sha1" -hash = "dc63a7bdecc3984a49698272d37d1b53247e15db" +hash = "3cbb320626e790dd4bcbce98720f9634092354a1" mode = "metadata:curseforge" [update] [update.curseforge] -file-id = 4584151 +file-id = 4591279 project-id = 618298 diff --git a/pack.toml b/pack.toml index d40e29e..aaf52a5 100644 --- a/pack.toml +++ b/pack.toml @@ -6,7 +6,7 @@ pack-format = "packwiz:1.1.0" [index] file = "index.toml" hash-format = "sha256" -hash = "49b3ac6f770a7ed4934be15b9371ea7c1f6a1cf741d97268042c73a0b19bafc2" +hash = "1d0f962c421f5aa35ebfd19411254aac09cda0492eb245885e3e4a8a57b37ec4" [versions] forge = "43.2.8" From 4415eecb3d8446fa932708a5f9e1e850a6f7e255 Mon Sep 17 00:00:00 2001 From: Thomas Hinkle Date: Sat, 17 Jun 2023 22:35:08 -0500 Subject: [PATCH 28/36] downgraded a mod for compatibility --- CHANGELOG.md | 2 +- index.toml | 2 +- mods/almost-unified.pw.toml | 12 ++++++------ pack.toml | 2 +- 4 files changed, 9 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f924f2b..e89df20 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -58,7 +58,7 @@ This will be the initial release for the production server. I will avoid adding - Additional Enchanted Miner 1192.1.0 -> 1192.1.1 - Advanced Peripherals 0.7.27r -> 0.7.28r -- Almost Unified 0.4.2 -> 0.5.0 +- Almost Unified 0.4.2 -> 0.4.4 - Aquamirae 5.6.API14 -> 6.API15 - Architectury API 6.5.77 -> 6.5.85 - Bookshelf 16.2.18 -> 16.3.20 diff --git a/index.toml b/index.toml index 3da4a19..21d69fc 100644 --- a/index.toml +++ b/index.toml @@ -148,7 +148,7 @@ metafile = true [[files]] file = "mods/almost-unified.pw.toml" -hash = "eee543d5df77eb92c79d0ee76ff4302fe7350d8283da2c7c05ef4c74edc294e7" +hash = "f722c39d3f4ca5dbb520133b05ff790de74b5337531402da10d1efca975191dc" metafile = true [[files]] diff --git a/mods/almost-unified.pw.toml b/mods/almost-unified.pw.toml index a7c36f4..6dba9be 100644 --- a/mods/almost-unified.pw.toml +++ b/mods/almost-unified.pw.toml @@ -1,13 +1,13 @@ name = "Almost Unified" -filename = "almostunified-forge-1.19.2-0.5.0.jar" +filename = "almostunified-forge-1.19.2-0.4.4.jar" side = "both" [download] +url = "https://cdn.modrinth.com/data/sdaSaQEz/versions/nFn0L5rw/almostunified-forge-1.19.2-0.4.4.jar" hash-format = "sha1" -hash = "a5e89e47bb7e9650fb4765fcbea2e4d29f04fa0e" -mode = "metadata:curseforge" +hash = "1d27e7c16d6db623731f7ff88df03c9532680715" [update] -[update.curseforge] -file-id = 4586195 -project-id = 633823 +[update.modrinth] +mod-id = "sdaSaQEz" +version = "nFn0L5rw" diff --git a/pack.toml b/pack.toml index aaf52a5..ad2d532 100644 --- a/pack.toml +++ b/pack.toml @@ -6,7 +6,7 @@ pack-format = "packwiz:1.1.0" [index] file = "index.toml" hash-format = "sha256" -hash = "1d0f962c421f5aa35ebfd19411254aac09cda0492eb245885e3e4a8a57b37ec4" +hash = "9bdf89bccc2b2de062b05ec0641be2dfb1235f152855e622051771824ecec25e" [versions] forge = "43.2.8" From 5187a70a155f29da1e8df5705e06ad1c3a866634 Mon Sep 17 00:00:00 2001 From: Thomas Hinkle Date: Sat, 17 Jun 2023 23:09:04 -0500 Subject: [PATCH 29/36] Haha just kidding. Hopefully now it works --- CHANGELOG.md | 2 +- index.toml | 2 +- mods/almost-unified.pw.toml | 8 ++++---- pack.toml | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e89df20..043d94b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -58,7 +58,7 @@ This will be the initial release for the production server. I will avoid adding - Additional Enchanted Miner 1192.1.0 -> 1192.1.1 - Advanced Peripherals 0.7.27r -> 0.7.28r -- Almost Unified 0.4.2 -> 0.4.4 +- Almost Unified 0.4.2 -> 0.4.3 - Aquamirae 5.6.API14 -> 6.API15 - Architectury API 6.5.77 -> 6.5.85 - Bookshelf 16.2.18 -> 16.3.20 diff --git a/index.toml b/index.toml index 21d69fc..ebda7c4 100644 --- a/index.toml +++ b/index.toml @@ -148,7 +148,7 @@ metafile = true [[files]] file = "mods/almost-unified.pw.toml" -hash = "f722c39d3f4ca5dbb520133b05ff790de74b5337531402da10d1efca975191dc" +hash = "c43714baae114a49309ce28eeb985d337b433297e28f65bcfe6d533df081c62b" metafile = true [[files]] diff --git a/mods/almost-unified.pw.toml b/mods/almost-unified.pw.toml index 6dba9be..b3a9ea4 100644 --- a/mods/almost-unified.pw.toml +++ b/mods/almost-unified.pw.toml @@ -1,13 +1,13 @@ name = "Almost Unified" -filename = "almostunified-forge-1.19.2-0.4.4.jar" +filename = "almostunified-forge-1.19.2-0.4.3.jar" side = "both" [download] -url = "https://cdn.modrinth.com/data/sdaSaQEz/versions/nFn0L5rw/almostunified-forge-1.19.2-0.4.4.jar" +url = "https://cdn.modrinth.com/data/sdaSaQEz/versions/MJwm2tmA/almostunified-forge-1.19.2-0.4.3.jar" hash-format = "sha1" -hash = "1d27e7c16d6db623731f7ff88df03c9532680715" +hash = "398833f879acb3bb55fbff866ad3a3a5d716bf3c" [update] [update.modrinth] mod-id = "sdaSaQEz" -version = "nFn0L5rw" +version = "MJwm2tmA" diff --git a/pack.toml b/pack.toml index ad2d532..528deec 100644 --- a/pack.toml +++ b/pack.toml @@ -6,7 +6,7 @@ pack-format = "packwiz:1.1.0" [index] file = "index.toml" hash-format = "sha256" -hash = "9bdf89bccc2b2de062b05ec0641be2dfb1235f152855e622051771824ecec25e" +hash = "fc98ba961d44c8912b0cc367b2b868b3c55c1cac8c5e23be3f292e09d9377760" [versions] forge = "43.2.8" From 9f09d7bc5c15bcce9486fb093ead905657b9752f Mon Sep 17 00:00:00 2001 From: Thomas Hinkle Date: Sat, 17 Jun 2023 23:29:28 -0500 Subject: [PATCH 30/36] actually fixed for good. --- CHANGELOG.md | 2 ++ index.toml | 7 +------ mods/almost-unified.pw.toml | 8 ++++---- mods/compressedcreativity.pw.toml | 13 ------------- pack.toml | 2 +- 5 files changed, 8 insertions(+), 24 deletions(-) delete mode 100644 mods/compressedcreativity.pw.toml diff --git a/CHANGELOG.md b/CHANGELOG.md index 043d94b..57bbbb2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -15,6 +15,8 @@ This will be the initial release for the production server. I will avoid adding ### Removals +- Compressed Creativity + - It's causing an issue with launching now, so fuck it. - River Redux - Simple Shops - It functions fine, but it is out-classed by our new trading mod. diff --git a/index.toml b/index.toml index ebda7c4..1a8fb7b 100644 --- a/index.toml +++ b/index.toml @@ -148,7 +148,7 @@ metafile = true [[files]] file = "mods/almost-unified.pw.toml" -hash = "c43714baae114a49309ce28eeb985d337b433297e28f65bcfe6d533df081c62b" +hash = "f722c39d3f4ca5dbb520133b05ff790de74b5337531402da10d1efca975191dc" metafile = true [[files]] @@ -296,11 +296,6 @@ file = "mods/compact-machines.pw.toml" hash = "53d2af852bfd91938b19c1c25a9678ce2cb34f09494514f44fa0e59313e8eab6" metafile = true -[[files]] -file = "mods/compressedcreativity.pw.toml" -hash = "6b791b4da04c58e6e79c4e096b668f9e3b2d640192cf098819519e543c45e16c" -metafile = true - [[files]] file = "mods/compressium.pw.toml" hash = "35769a155413ac8fd4c933e6bed251ae3e153eda0c6d7d150bd37caeb577538c" diff --git a/mods/almost-unified.pw.toml b/mods/almost-unified.pw.toml index b3a9ea4..6dba9be 100644 --- a/mods/almost-unified.pw.toml +++ b/mods/almost-unified.pw.toml @@ -1,13 +1,13 @@ name = "Almost Unified" -filename = "almostunified-forge-1.19.2-0.4.3.jar" +filename = "almostunified-forge-1.19.2-0.4.4.jar" side = "both" [download] -url = "https://cdn.modrinth.com/data/sdaSaQEz/versions/MJwm2tmA/almostunified-forge-1.19.2-0.4.3.jar" +url = "https://cdn.modrinth.com/data/sdaSaQEz/versions/nFn0L5rw/almostunified-forge-1.19.2-0.4.4.jar" hash-format = "sha1" -hash = "398833f879acb3bb55fbff866ad3a3a5d716bf3c" +hash = "1d27e7c16d6db623731f7ff88df03c9532680715" [update] [update.modrinth] mod-id = "sdaSaQEz" -version = "MJwm2tmA" +version = "nFn0L5rw" diff --git a/mods/compressedcreativity.pw.toml b/mods/compressedcreativity.pw.toml deleted file mode 100644 index 48d8e27..0000000 --- a/mods/compressedcreativity.pw.toml +++ /dev/null @@ -1,13 +0,0 @@ -name = "Compressed Creativity" -filename = "compressedcreativity-1.19.2-0.1.5.jar" -side = "both" - -[download] -hash-format = "sha1" -hash = "b65d4266bcea03ea7d4e006ad2ab07bcc2fdab66" -mode = "metadata:curseforge" - -[update] -[update.curseforge] -file-id = 4278938 -project-id = 549381 diff --git a/pack.toml b/pack.toml index 528deec..4a9a571 100644 --- a/pack.toml +++ b/pack.toml @@ -6,7 +6,7 @@ pack-format = "packwiz:1.1.0" [index] file = "index.toml" hash-format = "sha256" -hash = "fc98ba961d44c8912b0cc367b2b868b3c55c1cac8c5e23be3f292e09d9377760" +hash = "7b1e8334a9b5d5f93c0e0fc29e1f4b81e503b6b313b2a15c91ae7c68fc4ca432" [versions] forge = "43.2.8" From f8e4bb93109d944c6d7445ec35037bfe4506ee10 Mon Sep 17 00:00:00 2001 From: Thomas Hinkle Date: Wed, 21 Jun 2023 12:53:40 -0500 Subject: [PATCH 31/36] updated some mods and prevented future issues updating. --- CHANGELOG.md | 9 ++++++--- index.toml | 14 +++++++------- mods/almost-unified.pw.toml | 5 ----- mods/collective.pw.toml | 6 +++--- mods/forgeendertech.pw.toml | 6 +++--- mods/iron-jetpacks.pw.toml | 6 +++--- mods/lootr.pw.toml | 6 +++--- mods/macaws-bridges.pw.toml | 6 +++--- mods/puzzles-lib.pw.toml | 8 ++++---- pack.toml | 2 +- 10 files changed, 33 insertions(+), 35 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 57bbbb2..0a43f96 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -68,7 +68,7 @@ This will be the initial release for the production server. I will avoid adding - Botany Pots 9.0.31 -> 9.0.33 - Botany Trees 5.0.5 -> 5.0.7 - Canary 0.1.10 -> 0.2.7 -- Collective 6.53 -> 6.57 +- Collective 6.53 -> 6.61 - Connectivity 3.5 -> 4.2 - Cooking for Blockheads 13.3.1 -> 13.3.2 - Crafting Tweaks 15.1.6 -> 15.1.7 @@ -84,11 +84,13 @@ This will be the initial release for the production server. I will avoid adding - Extreme Reactors 2.0.62 -> 2.0.64 - Falling Leaves (Forge) 2.0.0-alpha+20221129-2000 -> 1.3.1 - FastWorkbench 7.1.1 -> 7.1.3 +- ForgeEndertech 10.0.6.0-build 0865 -> 10.0.6.1-build 0897 - FTB Backups 2 1.0.18 -> 1.0.19 - FTB Chunks 1902.3.21-build 266 -> 1902.3.22-build 271 - FTB Library (Forge) 1902.3.18-build.208 -> 1902.3.19-build.214 - In Control! 7.1.3 -> 7.1.8 - Inventory Sorter 21.0.4 -> 22.0.0 +- Iron Jetpacks 6.0.3 -> 6.0.4 - Jade Addons (Forge) 3.4.0 -> 3.5.0 - JourneyMap 5.9.5 -> 5.9.7 - KleeSlabs 12.2.0 -> 12.3.0 @@ -98,7 +100,8 @@ This will be the initial release for the production server. I will avoid adding - libIPN 2.0.6 -> 3.0.2 - Little Contraptions 1.19.2.0 -> 1.19.2.2 - Little Logistics v1.3.2 -> v1.4.0 -- Lootr (Forge) 0.4.23.60 -> 0.4.24.61 +- Lootr (Forge) 0.4.23.60 -> 0.4.24.62 +- Macaw's Bridges 2.0.7 -> 2.1.0 - Macaw's Paths and Pavings 1.0.2 -> 1.0.3 - Macaw's Roofs 2.2.3 -> 2.2.4 - Macaw's Trapdoors 1.0.9 -> 1.1.0 @@ -111,7 +114,7 @@ This will be the initial release for the production server. I will avoid adding - Pam's HarvestCraft 2 - Food Core 1.0.0 -> 1.0.1 - Placebo 7.1.8 -> 7.2.0 - PneumaticCraft: Repressurized 4.3.3-22 -> 4.3.4-24 -- Puzzles Lib 4.4.0 -> 4.4.2 +- Puzzles Lib 4.4.0 -> 4.4.3 - RFTools Builder 5.2.6 -> 5.2.8 - Saturn 0.0.3 -> 0.0.4 - Seamless 1.1.0 -> 1.3.0 diff --git a/index.toml b/index.toml index 1a8fb7b..abad6d3 100644 --- a/index.toml +++ b/index.toml @@ -148,7 +148,7 @@ metafile = true [[files]] file = "mods/almost-unified.pw.toml" -hash = "f722c39d3f4ca5dbb520133b05ff790de74b5337531402da10d1efca975191dc" +hash = "4dd92d7bb72a6531b963f1d781e7d21037c15a1af5f8fac15658b0424e680696" metafile = true [[files]] @@ -288,7 +288,7 @@ metafile = true [[files]] file = "mods/collective.pw.toml" -hash = "5f536fdf4605781e92b62b7a949e937c13cb3c73cf511002c32dcef2cef56edd" +hash = "66a4e346ba4916c93230f0b45db908d1356c3b7ce4534a1e564efe8e565ca38b" metafile = true [[files]] @@ -493,7 +493,7 @@ metafile = true [[files]] file = "mods/forgeendertech.pw.toml" -hash = "63a3540502ac2cc08225f4ecdb15499a31af01ad9f754eab4baef5eefdfb4748" +hash = "8bf8fca986e0d08524a13b0e635c05d2c9a0a9b9a31cd90d647bbf1b54aa6c02" metafile = true [[files]] @@ -568,7 +568,7 @@ metafile = true [[files]] file = "mods/iron-jetpacks.pw.toml" -hash = "4a93876a066e8438c79b3cdc2caa6c3fea38f4537a4378bec6bb43ec06cde9ef" +hash = "c479194ecaa69c4829e118f038c29936ace6ffc8d5844ec94a7d0b49e043624e" metafile = true [[files]] @@ -678,7 +678,7 @@ metafile = true [[files]] file = "mods/lootr.pw.toml" -hash = "421b20e8552643a3e91e15fe300a45e58a32eef7de8c60af1d0a6bca2c0d2823" +hash = "f7452c4665f0e8c93438deaae53632f4d7dd155f3222456fa4aa195ed2e73756" metafile = true [[files]] @@ -688,7 +688,7 @@ metafile = true [[files]] file = "mods/macaws-bridges.pw.toml" -hash = "864b977898a944f14f98e5a75a4a4d841c9a28c523d94657d8c5ce4929ad4ef6" +hash = "91e8881d0effbcded0fe38087242f7ebedd15272a067b0d3cebc7b24d85e3e59" metafile = true [[files]] @@ -933,7 +933,7 @@ metafile = true [[files]] file = "mods/puzzles-lib.pw.toml" -hash = "5e7aaa5b97e7c65e9db5fb42ed3f411c901609b414c4b0eb1c081db96d16198b" +hash = "827b361fcddfa0bdb84bfa0ebf0e1a38b139804c92aaf9e39218d784e4111fb4" metafile = true [[files]] diff --git a/mods/almost-unified.pw.toml b/mods/almost-unified.pw.toml index 6dba9be..aad10e3 100644 --- a/mods/almost-unified.pw.toml +++ b/mods/almost-unified.pw.toml @@ -6,8 +6,3 @@ side = "both" url = "https://cdn.modrinth.com/data/sdaSaQEz/versions/nFn0L5rw/almostunified-forge-1.19.2-0.4.4.jar" hash-format = "sha1" hash = "1d27e7c16d6db623731f7ff88df03c9532680715" - -[update] -[update.modrinth] -mod-id = "sdaSaQEz" -version = "nFn0L5rw" diff --git a/mods/collective.pw.toml b/mods/collective.pw.toml index 8a71323..f9fd7d6 100644 --- a/mods/collective.pw.toml +++ b/mods/collective.pw.toml @@ -1,13 +1,13 @@ name = "Collective" -filename = "collective-1.19.2-6.57.jar" +filename = "collective-1.19.2-6.61.jar" side = "both" [download] hash-format = "sha1" -hash = "71e3bca6015f6e0c608b426626adc669252214d3" +hash = "3b3f9df268a902cdf4b5e30dfd35bc2b93da18da" mode = "metadata:curseforge" [update] [update.curseforge] -file-id = 4574094 +file-id = 4597546 project-id = 342584 diff --git a/mods/forgeendertech.pw.toml b/mods/forgeendertech.pw.toml index be89daa..6eba6a3 100644 --- a/mods/forgeendertech.pw.toml +++ b/mods/forgeendertech.pw.toml @@ -1,13 +1,13 @@ name = "ForgeEndertech" -filename = "ForgeEndertech-1.19.2-10.0.6.0-build.0865.jar" +filename = "ForgeEndertech-1.19.2-10.0.6.1-build.0897.jar" side = "both" [download] hash-format = "sha1" -hash = "1f2972ef4dc4bcf9fe402de73b5be77414937599" +hash = "7cfc115215903888fbd5a9f5f0d356dcc30d7420" mode = "metadata:curseforge" [update] [update.curseforge] -file-id = 4501023 +file-id = 4601207 project-id = 244844 diff --git a/mods/iron-jetpacks.pw.toml b/mods/iron-jetpacks.pw.toml index 4393fe5..8ad9d72 100644 --- a/mods/iron-jetpacks.pw.toml +++ b/mods/iron-jetpacks.pw.toml @@ -1,13 +1,13 @@ name = "Iron Jetpacks" -filename = "IronJetpacks-1.19.2-6.0.3.jar" +filename = "IronJetpacks-1.19.2-6.0.4.jar" side = "both" [download] hash-format = "sha1" -hash = "352836af308d44add04d7e1758d64b61996b5ec7" +hash = "72ac0d70ac82b1efbcf5d575a9009e51dd86db9b" mode = "metadata:curseforge" [update] [update.curseforge] -file-id = 4141440 +file-id = 4598075 project-id = 284497 diff --git a/mods/lootr.pw.toml b/mods/lootr.pw.toml index 64c088f..6141e4d 100644 --- a/mods/lootr.pw.toml +++ b/mods/lootr.pw.toml @@ -1,13 +1,13 @@ name = "Lootr (Forge)" -filename = "lootr-1.19-0.4.24.61.jar" +filename = "lootr-1.19-0.4.24.62.jar" side = "both" [download] hash-format = "sha1" -hash = "7f11d2505a4f535b626a0a0310e9dce41470dfa1" +hash = "43c7584798bbdad57847cdc9bcaa42655e9fd5f2" mode = "metadata:curseforge" [update] [update.curseforge] -file-id = 4581859 +file-id = 4596364 project-id = 361276 diff --git a/mods/macaws-bridges.pw.toml b/mods/macaws-bridges.pw.toml index 37b0d16..60bd12d 100644 --- a/mods/macaws-bridges.pw.toml +++ b/mods/macaws-bridges.pw.toml @@ -1,13 +1,13 @@ name = "Macaw's Bridges" -filename = "mcw-bridges-2.0.7-mc1.19.2forge.jar" +filename = "mcw-bridges-2.1.0-mc1.19.2forge.jar" side = "both" [download] hash-format = "sha1" -hash = "8d7b2e5b79338f9726f71a523905a3b4590e4992" +hash = "107a31a93322fbe20cd9c1a0950dfb62ce2c4bdf" mode = "metadata:curseforge" [update] [update.curseforge] -file-id = 4446187 +file-id = 4599799 project-id = 351725 diff --git a/mods/puzzles-lib.pw.toml b/mods/puzzles-lib.pw.toml index d978c3b..fa469f6 100644 --- a/mods/puzzles-lib.pw.toml +++ b/mods/puzzles-lib.pw.toml @@ -1,13 +1,13 @@ name = "Puzzles Lib" -filename = "PuzzlesLib-v4.4.2-1.19.2-Forge.jar" +filename = "PuzzlesLib-v4.4.3-1.19.2-Forge.jar" side = "both" [download] -url = "https://cdn.modrinth.com/data/QAGBst4M/versions/Bp8RvlYw/PuzzlesLib-v4.4.2-1.19.2-Forge.jar" +url = "https://cdn.modrinth.com/data/QAGBst4M/versions/UbCrBSit/PuzzlesLib-v4.4.3-1.19.2-Forge.jar" hash-format = "sha1" -hash = "0969e4aaa556bff32e448c20a4145a670f76b2f3" +hash = "ad531f214a2def16ff670cc94c0ea2ab40773b09" [update] [update.modrinth] mod-id = "QAGBst4M" -version = "Bp8RvlYw" +version = "UbCrBSit" diff --git a/pack.toml b/pack.toml index 4a9a571..0656217 100644 --- a/pack.toml +++ b/pack.toml @@ -6,7 +6,7 @@ pack-format = "packwiz:1.1.0" [index] file = "index.toml" hash-format = "sha256" -hash = "7b1e8334a9b5d5f93c0e0fc29e1f4b81e503b6b313b2a15c91ae7c68fc4ca432" +hash = "f792661499d42aba4e04a2b6f30b9d1eab0d9402c7b195c73697e56314f15555" [versions] forge = "43.2.8" From b8638ef2c80180584f292039cdab924de4bb7623 Mon Sep 17 00:00:00 2001 From: Thomas Hinkle Date: Mon, 26 Jun 2023 12:27:09 -0500 Subject: [PATCH 32/36] Added a nice tree mod and updated some stuff. --- CHANGELOG.md | 21 ++++++++++------ index.toml | 30 +++++++++++++++-------- mods/collective.pw.toml | 6 ++--- mods/createaddition.pw.toml | 6 ++--- mods/dynamictrees.pw.toml | 13 ++++++++++ mods/dynamictreesplus.pw.toml | 13 ++++++++++ mods/macaws-trapdoors.pw.toml | 6 ++--- mods/nomowanderer.pw.toml | 6 ++--- mods/pneumaticcraft-repressurized.pw.toml | 6 ++--- mods/selene.pw.toml | 6 ++--- mods/sophisticated-backpacks.pw.toml | 6 ++--- mods/sophisticated-core.pw.toml | 6 ++--- mods/supermartijn642s-core-lib.pw.toml | 8 +++--- mods/trash-cans.pw.toml | 6 ++--- pack.toml | 2 +- 15 files changed, 91 insertions(+), 50 deletions(-) create mode 100644 mods/dynamictrees.pw.toml create mode 100644 mods/dynamictreesplus.pw.toml diff --git a/CHANGELOG.md b/CHANGELOG.md index 0a43f96..10f1e55 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -34,6 +34,10 @@ This will be the initial release for the production server. I will avoid adding - Automatically swaps to the correct tool for breaking the block if it's in your hotbar. - Chunky - Allows OPs to pre-generate chunks. +- Dynamic Trees +- Dynamic Trees + + - Adds trees, cactuses, and mushrooms that grow "realistically." + - They branch like a tree would, they spread seeds to grow more trees, they rot and grow fungus, etc. - Light Overlay - Lets you see light levels by pressing F7. Red = Monsters will spawn anytime, Yellow = Monsters will spawn at night. - Mindful Darkness @@ -68,12 +72,12 @@ This will be the initial release for the production server. I will avoid adding - Botany Pots 9.0.31 -> 9.0.33 - Botany Trees 5.0.5 -> 5.0.7 - Canary 0.1.10 -> 0.2.7 -- Collective 6.53 -> 6.61 +- Collective 6.53 -> 6.62 - Connectivity 3.5 -> 4.2 - Cooking for Blockheads 13.3.1 -> 13.3.2 - Crafting Tweaks 15.1.6 -> 15.1.7 - Create 0.5.0.i -> 0.5.1.b -- Create Crafts and Additions 1.19.2-20230411a -> 1.19.2-20230527a +- Create Crafts and Additions 1.19.2-20230411a -> 1.19.2-20230623a - Create Deco 1.3.1 -> 1.3.3 - CreativeCore 2.9.3 -> 2.9.4 - Cucumber Library 6.0.6 -> 6.0.7 @@ -107,13 +111,13 @@ This will be the initial release for the production server. I will avoid adding - Macaw's Trapdoors 1.0.9 -> 1.1.0 - Maintenance Mode 1.1.1d -> 1.1.1 - Mindful Darkness 4.0.5 -> 4.0.9 -- Moonlight Lib 2.2.31 -> 2.2.38 -- NoMoWanderer 1.3.6 -> 1.3.9 +- Moonlight Lib 2.2.31 -> 2.2.40 +- NoMoWanderer 1.3.6 -> 1.3.10 - Obscure API 14 -> 15 - Pam's HarvestCraft 2 - Crops 1.0.1 -> 1.0.2 - Pam's HarvestCraft 2 - Food Core 1.0.0 -> 1.0.1 - Placebo 7.1.8 -> 7.2.0 -- PneumaticCraft: Repressurized 4.3.3-22 -> 4.3.4-24 +- PneumaticCraft: Repressurized 4.3.3-22 -> 4.3.5-25 - Puzzles Lib 4.4.0 -> 4.4.3 - RFTools Builder 5.2.6 -> 5.2.8 - Saturn 0.0.3 -> 0.0.4 @@ -121,14 +125,15 @@ This will be the initial release for the production server. I will avoid adding - SeasonHUD 1.4.12 -> 1.4.18 - Serene Seasons Fix 1.0.7 -> 1.0.8 - ShetiPhianCore 11.3.01 -> 3.11.3.03 -- Sophisticated Backpacks 3.18.45.819 -> 3.18.50.849 -- Sophisticated Core 0.5.51.251 -> 0.5.71.319 +- Sophisticated Backpacks 3.18.45.819 -> 3.18.51.860 +- Sophisticated Core 0.5.51.251 -> 0.5.73.333 - Spawn Animations 1.8.2 -> 1.9.1 -- SuperMartijn642's Core Lib 1.1.7 -> 1.1.9a +- SuperMartijn642's Core Lib 1.1.7 -> 1.1.10 - TerraBlender (Forge) 2.0.1.136 -> 2.0.1.162 - The John Mod Reborn 1.0.2 -> 1.0.4 - Tom's Trading Network 0.1.0 -> 0.2.1 - Torchmaster 19.2.0 -> 19.2.90 +- Trash Cans 1.0.17a -> 1.0.18 - ZeroCore 2 2.1.33 -> 2.1.35 # 1.0.19 diff --git a/index.toml b/index.toml index abad6d3..76c7ff0 100644 --- a/index.toml +++ b/index.toml @@ -288,7 +288,7 @@ metafile = true [[files]] file = "mods/collective.pw.toml" -hash = "66a4e346ba4916c93230f0b45db908d1356c3b7ce4534a1e564efe8e565ca38b" +hash = "1584c24561d1b84c8a0be57cdb1c36d4330014ffa43873d030d0ea191ec89c54" metafile = true [[files]] @@ -363,7 +363,7 @@ metafile = true [[files]] file = "mods/createaddition.pw.toml" -hash = "dc215d12d87c9cc23a80637334dbed408a729ac9fb5310fb521d4750023931e6" +hash = "b09ca1d2151f681b3febe34c5412d213c1c7ff46a2bd5a6f9b6f55dab904baea" metafile = true [[files]] @@ -406,6 +406,16 @@ file = "mods/doggy-talents.pw.toml" hash = "76911ce7d706abecab2e0e123458ecd7d00b105d51b68b6a2d495d2156cbf4d8" metafile = true +[[files]] +file = "mods/dynamictrees.pw.toml" +hash = "22813dab8c6a29dc96c0998b5464ad741b1f2d8dae336751e017859c531d0fd7" +metafile = true + +[[files]] +file = "mods/dynamictreesplus.pw.toml" +hash = "69f49d10bbd9ef14ee183e0c5ba3a84ba594a495ca890842feaca7af451c3e45" +metafile = true + [[files]] file = "mods/easier-sleeping.pw.toml" hash = "38583840dfcba1846ba272850baa63c4060ba53b679f7bafc782f63cf3b10720" @@ -723,7 +733,7 @@ metafile = true [[files]] file = "mods/macaws-trapdoors.pw.toml" -hash = "6652963a36a833070b3fb7959083682a4580da18ed642c43bf05d1524012c43e" +hash = "35554a19f64ba3c4aa01aa14c7b6cd03b986967d27cbbf16a47dce66bb6757cc" metafile = true [[files]] @@ -823,7 +833,7 @@ metafile = true [[files]] file = "mods/nomowanderer.pw.toml" -hash = "8e08d9abf6fe745d1565d6233d45fde681ba5e0eab5f195c29040e389065e774" +hash = "9ff6c7fbb0d35be54a83d3c7828f4f0f94458e417b9de3186b02aef23926f3c4" metafile = true [[files]] @@ -913,7 +923,7 @@ metafile = true [[files]] file = "mods/pneumaticcraft-repressurized.pw.toml" -hash = "e2eb35bbb6073950ccb1e0fcf841b446e6697fec47bd4a794f928f95c07b9170" +hash = "a9fa88c30a625b07cd38435bf14c0233dddf59e24dd049a9a696a587eab162e9" metafile = true [[files]] @@ -1073,7 +1083,7 @@ metafile = true [[files]] file = "mods/selene.pw.toml" -hash = "48d40b4ff0fc80915472f0ae0d53b4a370e973c2b09e449d0d3d4140b3f6f47e" +hash = "54e8cddcc8fdadda043465955fd392d1d9ba042a1e0e23f1041530137298b6e9" metafile = true [[files]] @@ -1108,12 +1118,12 @@ metafile = true [[files]] file = "mods/sophisticated-backpacks.pw.toml" -hash = "f4c06b76d30313faed5afba11f2e1b863208f119b6a373e3a29021d110a3cf27" +hash = "9350b6d7d8ab73ce56ad757c577ada54348c9ce1933c1f282da9e76a78b9ec16" metafile = true [[files]] file = "mods/sophisticated-core.pw.toml" -hash = "d0a7ce24e946a5a9783db5bd2c7f518a173c4808e7733529255a7d95d24f57fc" +hash = "55a4c89651ca5abb88ea33623c255fb0370a4c71f893a5f1d7469d0d372708b6" metafile = true [[files]] @@ -1153,7 +1163,7 @@ metafile = true [[files]] file = "mods/supermartijn642s-core-lib.pw.toml" -hash = "f702abd9df78794a23c2926271a8c4b8aa7785e076a16fc72179095bdb2f46af" +hash = "18b7b42c8caabe5348f607c1f4cee8ca3938c27e15f818cc310585157a170ee5" metafile = true [[files]] @@ -1238,7 +1248,7 @@ metafile = true [[files]] file = "mods/trash-cans.pw.toml" -hash = "3d01b99f391bc147e1ff31ea3cdb44a25046c11bfc92c2983ffd351d5cad7748" +hash = "38cee16f00ed950e1f245f9de86dfbff938125f0461ad326fa81f659724a5d84" metafile = true [[files]] diff --git a/mods/collective.pw.toml b/mods/collective.pw.toml index f9fd7d6..efc66cb 100644 --- a/mods/collective.pw.toml +++ b/mods/collective.pw.toml @@ -1,13 +1,13 @@ name = "Collective" -filename = "collective-1.19.2-6.61.jar" +filename = "collective-1.19.2-6.62.jar" side = "both" [download] hash-format = "sha1" -hash = "3b3f9df268a902cdf4b5e30dfd35bc2b93da18da" +hash = "c51364169852fbbbfde2a97530c1de44621940a2" mode = "metadata:curseforge" [update] [update.curseforge] -file-id = 4597546 +file-id = 4601903 project-id = 342584 diff --git a/mods/createaddition.pw.toml b/mods/createaddition.pw.toml index c8df487..81d4a89 100644 --- a/mods/createaddition.pw.toml +++ b/mods/createaddition.pw.toml @@ -1,13 +1,13 @@ name = "Create Crafts & Additions" -filename = "createaddition-1.19.2-20230527a.jar" +filename = "createaddition-1.19.2-20230623a.jar" side = "both" [download] hash-format = "sha1" -hash = "f74830865ec9bfca1983e7f7e235433cd1d17c1e" +hash = "4315124b32124960fd09703a9ed882d3aa4f0bc4" mode = "metadata:curseforge" [update] [update.curseforge] -file-id = 4554044 +file-id = 4605623 project-id = 439890 diff --git a/mods/dynamictrees.pw.toml b/mods/dynamictrees.pw.toml new file mode 100644 index 0000000..2fbcc09 --- /dev/null +++ b/mods/dynamictrees.pw.toml @@ -0,0 +1,13 @@ +name = "Dynamic Trees" +filename = "DynamicTrees-1.19.2-1.1.0-BETA3.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/vdjF5PL5/versions/x9Cf6AuG/DynamicTrees-1.19.2-1.1.0-BETA3.jar" +hash-format = "sha1" +hash = "690213b91b090302a0bc19c2ab1d8c99c858f893" + +[update] +[update.modrinth] +mod-id = "vdjF5PL5" +version = "x9Cf6AuG" diff --git a/mods/dynamictreesplus.pw.toml b/mods/dynamictreesplus.pw.toml new file mode 100644 index 0000000..f2a80f8 --- /dev/null +++ b/mods/dynamictreesplus.pw.toml @@ -0,0 +1,13 @@ +name = "Dynamic Trees +" +filename = "DynamicTreesPlus-1.19.2-1.1.0.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/qaO9Dqpu/versions/RroeCDhD/DynamicTreesPlus-1.19.2-1.1.0.jar" +hash-format = "sha1" +hash = "8aa9e2c998d174408c61a64fdcbdd33e644fdf61" + +[update] +[update.modrinth] +mod-id = "qaO9Dqpu" +version = "RroeCDhD" diff --git a/mods/macaws-trapdoors.pw.toml b/mods/macaws-trapdoors.pw.toml index dde3ee9..3b6d06e 100644 --- a/mods/macaws-trapdoors.pw.toml +++ b/mods/macaws-trapdoors.pw.toml @@ -1,13 +1,13 @@ name = "Macaw's Trapdoors" -filename = "mcw-trapdoors-1.1.0-mc1.19.2forge.jar" +filename = "mcw-trapdoors-1.1.1-mc1.19.2forge.jar" side = "both" [download] hash-format = "sha1" -hash = "af6eba1a4817780e3043463505ea54f5153cafbc" +hash = "259c643a6cb8de520801c7d43cdd64854cd112cb" mode = "metadata:curseforge" [update] [update.curseforge] -file-id = 4543543 +file-id = 4608580 project-id = 400933 diff --git a/mods/nomowanderer.pw.toml b/mods/nomowanderer.pw.toml index 7700937..9d8a7ac 100644 --- a/mods/nomowanderer.pw.toml +++ b/mods/nomowanderer.pw.toml @@ -1,13 +1,13 @@ name = "NoMoWanderer" -filename = "nomowanderer-1.19.2_1.3.9.jar" +filename = "nomowanderer-1.19.2_1.3.10.jar" side = "both" [download] hash-format = "sha1" -hash = "a20a1fb7599883ec1a1e11aa9df1fe2ef23bf4ff" +hash = "f5a0b288f73d75e4736b2d3374e043d68e3a81b6" mode = "metadata:curseforge" [update] [update.curseforge] -file-id = 4578497 +file-id = 4608103 project-id = 354428 diff --git a/mods/pneumaticcraft-repressurized.pw.toml b/mods/pneumaticcraft-repressurized.pw.toml index dfc8401..58eba9a 100644 --- a/mods/pneumaticcraft-repressurized.pw.toml +++ b/mods/pneumaticcraft-repressurized.pw.toml @@ -1,13 +1,13 @@ name = "PneumaticCraft: Repressurized" -filename = "pneumaticcraft-repressurized-1.19.2-4.3.4-24.jar" +filename = "pneumaticcraft-repressurized-1.19.2-4.3.5-25.jar" side = "both" [download] hash-format = "sha1" -hash = "b4b737bb36c5ddb4d3d53894994818c91df6b0ed" +hash = "f1df885ce44fffddd01e99be82e56fb3b401da75" mode = "metadata:curseforge" [update] [update.curseforge] -file-id = 4510812 +file-id = 4606890 project-id = 281849 diff --git a/mods/selene.pw.toml b/mods/selene.pw.toml index b43eb99..f4484f2 100644 --- a/mods/selene.pw.toml +++ b/mods/selene.pw.toml @@ -1,13 +1,13 @@ name = "Moonlight Lib" -filename = "moonlight-1.19.2-2.2.38-forge.jar" +filename = "moonlight-1.19.2-2.2.40-forge.jar" side = "both" [download] hash-format = "sha1" -hash = "9fb863cd6b300aa099f9a39602ec65c772278fa2" +hash = "748c2293a47e691727d46d8e00c30f30d6839e42" mode = "metadata:curseforge" [update] [update.curseforge] -file-id = 4569958 +file-id = 4606361 project-id = 499980 diff --git a/mods/sophisticated-backpacks.pw.toml b/mods/sophisticated-backpacks.pw.toml index 63d320c..a62eeb7 100644 --- a/mods/sophisticated-backpacks.pw.toml +++ b/mods/sophisticated-backpacks.pw.toml @@ -1,13 +1,13 @@ name = "Sophisticated Backpacks" -filename = "sophisticatedbackpacks-1.19.2-3.18.50.849.jar" +filename = "sophisticatedbackpacks-1.19.2-3.18.51.860.jar" side = "both" [download] hash-format = "sha1" -hash = "3e92066f0fca124736659d44bac62c33506d7b03" +hash = "c702d9ef036e9902632c3b633cd0287c80313e43" mode = "metadata:curseforge" [update] [update.curseforge] -file-id = 4571825 +file-id = 4608439 project-id = 422301 diff --git a/mods/sophisticated-core.pw.toml b/mods/sophisticated-core.pw.toml index bf80593..5c663b2 100644 --- a/mods/sophisticated-core.pw.toml +++ b/mods/sophisticated-core.pw.toml @@ -1,13 +1,13 @@ name = "Sophisticated Core" -filename = "sophisticatedcore-1.19.2-0.5.71.319.jar" +filename = "sophisticatedcore-1.19.2-0.5.73.333.jar" side = "both" [download] hash-format = "sha1" -hash = "3cbb320626e790dd4bcbce98720f9634092354a1" +hash = "2262b71bed54f25a79ee8f2dd97becaaa946d14f" mode = "metadata:curseforge" [update] [update.curseforge] -file-id = 4591279 +file-id = 4608426 project-id = 618298 diff --git a/mods/supermartijn642s-core-lib.pw.toml b/mods/supermartijn642s-core-lib.pw.toml index 8033eee..4bdfb60 100644 --- a/mods/supermartijn642s-core-lib.pw.toml +++ b/mods/supermartijn642s-core-lib.pw.toml @@ -1,13 +1,13 @@ name = "SuperMartijn642's Core Lib" -filename = "supermartijn642corelib-1.1.9a-forge-mc1.19.2.jar" +filename = "supermartijn642corelib-1.1.10-forge-mc1.19.2.jar" side = "both" [download] -url = "https://cdn.modrinth.com/data/rOUBggPv/versions/zFYsrv1m/supermartijn642corelib-1.1.9a-forge-mc1.19.2.jar" +url = "https://cdn.modrinth.com/data/rOUBggPv/versions/z6UtG178/supermartijn642corelib-1.1.10-forge-mc1.19.2.jar" hash-format = "sha1" -hash = "71365a36a5a9fbef89c5400aa2c6fbf12f284cdd" +hash = "08fcd3116f8ab0c4393d22cf5030ae5dbc828159" [update] [update.modrinth] mod-id = "rOUBggPv" -version = "zFYsrv1m" +version = "z6UtG178" diff --git a/mods/trash-cans.pw.toml b/mods/trash-cans.pw.toml index 0425f58..b7a5a0b 100644 --- a/mods/trash-cans.pw.toml +++ b/mods/trash-cans.pw.toml @@ -1,13 +1,13 @@ name = "Trash Cans" -filename = "trashcans-1.0.17a-forge-mc1.19.jar" +filename = "trashcans-1.0.18-forge-mc1.19.jar" side = "both" [download] hash-format = "sha1" -hash = "1859cd67571db43de74fe95447b55c9f65165e57" +hash = "4e0ab8c916d919db48430c28f8df5a51c6f9f9e7" mode = "metadata:curseforge" [update] [update.curseforge] -file-id = 4418811 +file-id = 4606893 project-id = 394535 diff --git a/pack.toml b/pack.toml index 0656217..3e97ca8 100644 --- a/pack.toml +++ b/pack.toml @@ -6,7 +6,7 @@ pack-format = "packwiz:1.1.0" [index] file = "index.toml" hash-format = "sha256" -hash = "f792661499d42aba4e04a2b6f30b9d1eab0d9402c7b195c73697e56314f15555" +hash = "013a1eaed82c38fafeb3702df77b279c2b2953cda61b2aa67c95186b59065ad2" [versions] forge = "43.2.8" From 17034721bc762023b7895724d840491a94d12c92 Mon Sep 17 00:00:00 2001 From: Thomas Hinkle Date: Fri, 30 Jun 2023 12:47:06 -0500 Subject: [PATCH 33/36] Updated some mods and added botania automation --- CHANGELOG.md | 11 ++++++++--- index.toml | 23 ++++++++++++++--------- mods/additional-enchanted-miner.pw.toml | 8 ++++---- mods/advanced-peripherals.pw.toml | 6 +++--- mods/botania.pw.toml | 8 ++++---- mods/botanical-machinery.pw.toml | 13 +++++++++++++ mods/ftb-teams-forge.pw.toml | 6 +++--- mods/jei.pw.toml | 14 +++++++------- mods/just-enough-resources-jer.pw.toml | 8 ++++---- mods/libx.pw.toml | 8 ++++---- mods/polymorph.pw.toml | 6 +++--- mods/seasonhud.pw.toml | 6 +++--- pack.toml | 2 +- 13 files changed, 71 insertions(+), 48 deletions(-) create mode 100644 mods/botanical-machinery.pw.toml diff --git a/CHANGELOG.md b/CHANGELOG.md index 10f1e55..1b76737 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -32,6 +32,8 @@ This will be the initial release for the production server. I will avoid adding - Adds the Angel Block from Extra Utilities. It can be placed in the air and broken instantly without a tool. - Automatic Tool Swap - Automatically swaps to the correct tool for breaking the block if it's in your hotbar. +- Botanical Machinery + - Adds some mechanical versions of Botania to make automation easier - Chunky - Allows OPs to pre-generate chunks. - Dynamic Trees @@ -62,8 +64,8 @@ This will be the initial release for the production server. I will avoid adding ### Updates -- Additional Enchanted Miner 1192.1.0 -> 1192.1.1 -- Advanced Peripherals 0.7.27r -> 0.7.28r +- Additional Enchanted Miner 1192.1.0 -> 1192.2.0 +- Advanced Peripherals 0.7.27r -> 0.7.29r - Almost Unified 0.4.2 -> 0.4.3 - Aquamirae 5.6.API14 -> 6.API15 - Architectury API 6.5.77 -> 6.5.85 @@ -92,11 +94,13 @@ This will be the initial release for the production server. I will avoid adding - FTB Backups 2 1.0.18 -> 1.0.19 - FTB Chunks 1902.3.21-build 266 -> 1902.3.22-build 271 - FTB Library (Forge) 1902.3.18-build.208 -> 1902.3.19-build.214 +- FTB Teams (Forge) 1902.2.13-build 100 -> 1902.2.14-build 123 - In Control! 7.1.3 -> 7.1.8 - Inventory Sorter 21.0.4 -> 22.0.0 - Iron Jetpacks 6.0.3 -> 6.0.4 - Jade Addons (Forge) 3.4.0 -> 3.5.0 - JourneyMap 5.9.5 -> 5.9.7 +- Just Enough Items 11.6.0.1015 -> 11.6.0.1016 - KleeSlabs 12.2.0 -> 12.3.0 - Konkrete [Forge] 1.6.0 -> 1.6.1 - Kotlin for Forge 3.11.0 -> 3.12.0 @@ -118,11 +122,12 @@ This will be the initial release for the production server. I will avoid adding - Pam's HarvestCraft 2 - Food Core 1.0.0 -> 1.0.1 - Placebo 7.1.8 -> 7.2.0 - PneumaticCraft: Repressurized 4.3.3-22 -> 4.3.5-25 +- Polymorph (Forge) 0.46.1 -> 0.46.2 - Puzzles Lib 4.4.0 -> 4.4.3 - RFTools Builder 5.2.6 -> 5.2.8 - Saturn 0.0.3 -> 0.0.4 - Seamless 1.1.0 -> 1.3.0 -- SeasonHUD 1.4.12 -> 1.4.18 +- SeasonHUD 1.4.12 -> 1.4.19 - Serene Seasons Fix 1.0.7 -> 1.0.8 - ShetiPhianCore 11.3.01 -> 3.11.3.03 - Sophisticated Backpacks 3.18.45.819 -> 3.18.51.860 diff --git a/index.toml b/index.toml index 76c7ff0..81000a5 100644 --- a/index.toml +++ b/index.toml @@ -118,7 +118,7 @@ hash = "a7cb07fa43e9f01ff5472ba08f13483e346b88560d4a2304ffb6f1e64621b367" [[files]] file = "mods/additional-enchanted-miner.pw.toml" -hash = "024ca53ad82a3564f3626df6e24539c789fb12ac21238649270906ac49f7e2d2" +hash = "67730d9710c04d7d62f5decc5c865362f87b2c7304d858f9472ea8792c74cb66" metafile = true [[files]] @@ -133,7 +133,7 @@ metafile = true [[files]] file = "mods/advanced-peripherals.pw.toml" -hash = "81b518296ec4db07259934cce1523228499c8c5b824f6425a207e84587cd980e" +hash = "fa6761046e6c511a6205b4a39a9e7dbe75fa07b81c6cb645f2e5f3f835304d60" metafile = true [[files]] @@ -233,7 +233,12 @@ metafile = true [[files]] file = "mods/botania.pw.toml" -hash = "b28c3da3ee3ca475f8c79cbc4e8eb2f5fd44ab488bc14bfdf1fc04dc6f6e67c4" +hash = "aff5d172f2ef0d9f9a8e2ce00d5fcc864cafb15dc929d9e95e5d08e295fe7258" +metafile = true + +[[files]] +file = "mods/botanical-machinery.pw.toml" +hash = "b30f8af4809ec407b24d0e5c13675ea083fc819a0e07ed173c0b0c992c8e1cd6" metafile = true [[files]] @@ -533,7 +538,7 @@ metafile = true [[files]] file = "mods/ftb-teams-forge.pw.toml" -hash = "f2f347366b136eec0278baa68557247a4e5c793867daa31e7810ae7bc26921aa" +hash = "c0405f2f156703f6c5a181c18e96dfdbad8760c04ff3be8c088853c7b14572df" metafile = true [[files]] @@ -598,7 +603,7 @@ metafile = true [[files]] file = "mods/jei.pw.toml" -hash = "ec517326311870553f501b1cea0a453b67419a2663a3d3c4eb3422a0eb21f67c" +hash = "6b4b19b314ca50e8672b713d4b200418b11928c0952ce5ffee7455bf03842465" metafile = true [[files]] @@ -623,7 +628,7 @@ metafile = true [[files]] file = "mods/just-enough-resources-jer.pw.toml" -hash = "da3c3b8b5ae30b1b9e9ecab4b77ce2829bfd94b97bec4b2745f5ba8dea40c9e2" +hash = "25b7d53f3cedff407d47cd8256a062b721354bb41012531fc3be13368b02abfd" metafile = true [[files]] @@ -663,7 +668,7 @@ metafile = true [[files]] file = "mods/libx.pw.toml" -hash = "fb537f8737c8ee73a27c661ada6636b972a9a580dfd989bd1eabbec50b97a901" +hash = "e9990df2dd8d44af4b77de74747f2b31f96d458dc41261c524ff697945cb42ad" metafile = true [[files]] @@ -933,7 +938,7 @@ metafile = true [[files]] file = "mods/polymorph.pw.toml" -hash = "a0b717e012441e2bef8d9c1b7222dd9b25adf06d55ace1144eabf3ee6f637733" +hash = "81e58b7e5e9ebd792107e74590a779f935e150b687aa0b1184e441ec6ba1a44f" metafile = true [[files]] @@ -1073,7 +1078,7 @@ metafile = true [[files]] file = "mods/seasonhud.pw.toml" -hash = "4fe524fbc57e0d0c06fdcf0a294d120795115c614ab6fd71bde9fdc402a007ff" +hash = "9ad0a2f95b4d119a9aa1aa50f7e86a6a2c4b8936a4cc0313badceb045351615c" metafile = true [[files]] diff --git a/mods/additional-enchanted-miner.pw.toml b/mods/additional-enchanted-miner.pw.toml index be75196..f925801 100644 --- a/mods/additional-enchanted-miner.pw.toml +++ b/mods/additional-enchanted-miner.pw.toml @@ -1,13 +1,13 @@ name = "Additional Enchanted Miner" -filename = "AdditionalEnchantedMiner-1.19.2-1192.1.1.jar" +filename = "AdditionalEnchantedMiner-1.19.2-1192.2.0.jar" side = "both" [download] -url = "https://cdn.modrinth.com/data/jhxX1zVW/versions/4pK67MtS/AdditionalEnchantedMiner-1.19.2-1192.1.1.jar" +url = "https://cdn.modrinth.com/data/jhxX1zVW/versions/dBxRDIR3/AdditionalEnchantedMiner-1.19.2-1192.2.0.jar" hash-format = "sha1" -hash = "e0a6ea311be8f94cfd3b2bb666b3cf80de46f373" +hash = "e5a10fb6e9cdcf8d43631c2dcfca764b43638706" [update] [update.modrinth] mod-id = "jhxX1zVW" -version = "4pK67MtS" +version = "dBxRDIR3" diff --git a/mods/advanced-peripherals.pw.toml b/mods/advanced-peripherals.pw.toml index 3ea5092..0bea929 100644 --- a/mods/advanced-peripherals.pw.toml +++ b/mods/advanced-peripherals.pw.toml @@ -1,13 +1,13 @@ name = "Advanced Peripherals" -filename = "AdvancedPeripherals-1.19.2-0.7.28r.jar" +filename = "AdvancedPeripherals-1.19.2-0.7.29r.jar" side = "both" [download] hash-format = "sha1" -hash = "634d499a2cb9286872e2e79561d5d59e6862d7a3" +hash = "c07c3bef37172a2a91fb28926275d6f30aa03dbe" mode = "metadata:curseforge" [update] [update.curseforge] -file-id = 4561251 +file-id = 4617721 project-id = 431725 diff --git a/mods/botania.pw.toml b/mods/botania.pw.toml index 35bca5e..dd545cf 100644 --- a/mods/botania.pw.toml +++ b/mods/botania.pw.toml @@ -3,11 +3,11 @@ filename = "Botania-1.19.2-440-FORGE.jar" side = "both" [download] +url = "https://cdn.modrinth.com/data/pfjLUfGv/versions/ruMuBKgi/Botania-1.19.2-440-FORGE.jar" hash-format = "sha1" hash = "fab21c0fe2cc5d25cb7e607dc4100887b9a8339f" -mode = "metadata:curseforge" [update] -[update.curseforge] -file-id = 4557912 -project-id = 225643 +[update.modrinth] +mod-id = "pfjLUfGv" +version = "ruMuBKgi" diff --git a/mods/botanical-machinery.pw.toml b/mods/botanical-machinery.pw.toml new file mode 100644 index 0000000..04d5d46 --- /dev/null +++ b/mods/botanical-machinery.pw.toml @@ -0,0 +1,13 @@ +name = "Botanical Machinery" +filename = "BotanicalMachinery-1.19.2-2.0.1.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/CTJzhcfH/versions/f22kYsgI/BotanicalMachinery-1.19.2-2.0.1.jar" +hash-format = "sha1" +hash = "bb2b7523e214001c713cf1fad55bbe8eb6543217" + +[update] +[update.modrinth] +mod-id = "CTJzhcfH" +version = "f22kYsgI" diff --git a/mods/ftb-teams-forge.pw.toml b/mods/ftb-teams-forge.pw.toml index a1e36c4..71decb2 100644 --- a/mods/ftb-teams-forge.pw.toml +++ b/mods/ftb-teams-forge.pw.toml @@ -1,13 +1,13 @@ name = "FTB Teams (Forge)" -filename = "ftb-teams-forge-1902.2.13-build.100.jar" +filename = "ftb-teams-forge-1902.2.14-build.123.jar" side = "both" [download] hash-format = "sha1" -hash = "3f36ad4b4754d6d40debc2370926778e25b21e9d" +hash = "9e754e9710a39f8888e51eebeef5328f645342af" mode = "metadata:curseforge" [update] [update.curseforge] -file-id = 4477315 +file-id = 4611938 project-id = 404468 diff --git a/mods/jei.pw.toml b/mods/jei.pw.toml index 47682dc..0d0eebe 100644 --- a/mods/jei.pw.toml +++ b/mods/jei.pw.toml @@ -1,13 +1,13 @@ -name = "Just Enough Items (JEI)" -filename = "jei-1.19.2-forge-11.6.0.1015.jar" +name = "Just Enough Items" +filename = "jei-1.19.2-forge-11.6.0.1016.jar" side = "both" [download] +url = "https://cdn.modrinth.com/data/u6dRKJwZ/versions/YWrLRDfT/jei-1.19.2-forge-11.6.0.1016.jar" hash-format = "sha1" -hash = "c7aff94c76efd7725614c6f5a6fbc94f07a68df5" -mode = "metadata:curseforge" +hash = "5b5574b78984f2b0aa06b097e52d57a992c2bd44" [update] -[update.curseforge] -file-id = 4494410 -project-id = 238222 +[update.modrinth] +mod-id = "u6dRKJwZ" +version = "YWrLRDfT" diff --git a/mods/just-enough-resources-jer.pw.toml b/mods/just-enough-resources-jer.pw.toml index 7940e17..ef63194 100644 --- a/mods/just-enough-resources-jer.pw.toml +++ b/mods/just-enough-resources-jer.pw.toml @@ -3,11 +3,11 @@ filename = "JustEnoughResources-1.19.2-1.2.2.200.jar" side = "both" [download] +url = "https://cdn.modrinth.com/data/uEfK2CXF/versions/hCg1eHjd/JustEnoughResources-1.19.2-1.2.2.200.jar" hash-format = "sha1" hash = "c55206249be5edf1e09609ddc15485caba6c0f96" -mode = "metadata:curseforge" [update] -[update.curseforge] -file-id = 4440341 -project-id = 240630 +[update.modrinth] +mod-id = "uEfK2CXF" +version = "hCg1eHjd" diff --git a/mods/libx.pw.toml b/mods/libx.pw.toml index 446401d..be3da9e 100644 --- a/mods/libx.pw.toml +++ b/mods/libx.pw.toml @@ -3,11 +3,11 @@ filename = "LibX-1.19.2-4.2.8.jar" side = "both" [download] +url = "https://cdn.modrinth.com/data/qEH6GYul/versions/MI1qef6z/LibX-1.19.2-4.2.8.jar" hash-format = "sha1" hash = "801a437603db11c6acf70253356dd5057c814d45" -mode = "metadata:curseforge" [update] -[update.curseforge] -file-id = 4052778 -project-id = 412525 +[update.modrinth] +mod-id = "qEH6GYul" +version = "MI1qef6z" diff --git a/mods/polymorph.pw.toml b/mods/polymorph.pw.toml index af947bf..a99e12d 100644 --- a/mods/polymorph.pw.toml +++ b/mods/polymorph.pw.toml @@ -1,13 +1,13 @@ name = "Polymorph (Forge)" -filename = "polymorph-forge-0.46.1+1.19.2.jar" +filename = "polymorph-forge-0.46.2+1.19.2.jar" side = "both" [download] hash-format = "sha1" -hash = "63c33328b45a54d1109b28968b9f3f8cf83944ec" +hash = "0f9a6dc6748a1bfb8a10ab7c7d4c920d2c7d0260" mode = "metadata:curseforge" [update] [update.curseforge] -file-id = 4119087 +file-id = 4617467 project-id = 388800 diff --git a/mods/seasonhud.pw.toml b/mods/seasonhud.pw.toml index 1390983..beaef2b 100644 --- a/mods/seasonhud.pw.toml +++ b/mods/seasonhud.pw.toml @@ -1,13 +1,13 @@ name = "SeasonHUD" -filename = "seasonhud-1.19.2-1.4.18.jar" +filename = "seasonhud-1.19.2-1.4.19.jar" side = "client" [download] hash-format = "sha1" -hash = "21a4a6f6f16a389f796a218d7ef5cc43ec0d163d" +hash = "9acc5cb5626b8c3e2bdfab78b1b42e60bcc19059" mode = "metadata:curseforge" [update] [update.curseforge] -file-id = 4565986 +file-id = 4615012 project-id = 690971 diff --git a/pack.toml b/pack.toml index 3e97ca8..8dffc69 100644 --- a/pack.toml +++ b/pack.toml @@ -6,7 +6,7 @@ pack-format = "packwiz:1.1.0" [index] file = "index.toml" hash-format = "sha256" -hash = "013a1eaed82c38fafeb3702df77b279c2b2953cda61b2aa67c95186b59065ad2" +hash = "0273a315e7f39b07b845717858bcc0d3a79f2e6884a2c11f4cd50f7cdc596871" [versions] forge = "43.2.8" From c8913decb53b5eee15e4017df6ed35e32cd4e75e Mon Sep 17 00:00:00 2001 From: Matthew East Date: Wed, 5 Jul 2023 22:28:04 -0500 Subject: [PATCH 34/36] Remove alpha branding and update the notice URL for the main menu --- .../fancymenu/customization/um-mainmenu.txt | 22 +------------------ index.toml | 2 +- pack.toml | 2 +- 3 files changed, 3 insertions(+), 23 deletions(-) diff --git a/config/fancymenu/customization/um-mainmenu.txt b/config/fancymenu/customization/um-mainmenu.txt index 9b263bc..473e209 100755 --- a/config/fancymenu/customization/um-mainmenu.txt +++ b/config/fancymenu/customization/um-mainmenu.txt @@ -323,7 +323,7 @@ customization { enable_scrolling = false shadow = true scale = 1.0 - source = https://pub-f974a242e3b2477baabd944385481648.r2.dev/scrumptiouscraft-um/notices/titlescreen-notice.txt + source = https://scrumptiouscraft-notices.scrumptious.gg/um/titlescreen.txt text_border = 0 case_mode = normal source_mode = web @@ -382,23 +382,3 @@ customization { height = 14 } -customization { - orientation = mid-centered - enable_scrolling = true - shadow = true - scale = 3.0 - source = ALPHA BUILD - text_border = 0 - case_mode = normal - source_mode = direct - line_spacing = 1 - x = -95 - width = 191 - action = custom_layout_element:fancymenu_customization_item_text - actionid = 34aa281b-757a-43e7-b1a9-ac044c7ede221682310465110 - y = -40 - alignment = left - base_color = ff0000 - height = 34 -} - diff --git a/index.toml b/index.toml index 81000a5..23f9348 100644 --- a/index.toml +++ b/index.toml @@ -42,7 +42,7 @@ hash = "4d1b1fb5cb5441c0579e67c0159a14a0ec0c393db1e378ec81efdb946e964c0a" [[files]] file = "config/fancymenu/customization/um-mainmenu.txt" -hash = "e01cd1cff1c5b5d9cf69fb0351dd09c162e227bd8d1e115093ef5ee323561c69" +hash = "07abb4f6d78e8fc1c07c224cb20da5a34499ab62aa5020be9833e9ccf6b3f6c0" [[files]] file = "config/fancymenu/customization/um-multiplayer-menu.txt" diff --git a/pack.toml b/pack.toml index 8dffc69..84f79f0 100644 --- a/pack.toml +++ b/pack.toml @@ -6,7 +6,7 @@ pack-format = "packwiz:1.1.0" [index] file = "index.toml" hash-format = "sha256" -hash = "0273a315e7f39b07b845717858bcc0d3a79f2e6884a2c11f4cd50f7cdc596871" +hash = "e07b07b7ee0900ff84e405139e8a792df4f14cd3f42d788f026da62a65070469" [versions] forge = "43.2.8" From 3d3687fe4322464d451c408ccaa17b8c7d4d1304 Mon Sep 17 00:00:00 2001 From: Thomas Hinkle Date: Wed, 5 Jul 2023 22:40:00 -0500 Subject: [PATCH 35/36] final update before release? --- CHANGELOG.md | 29 ++++++++++++++----------- index.toml | 32 ++++++++++++++-------------- mods/connectivity.pw.toml | 6 +++--- mods/create.pw.toml | 6 +++--- mods/enderchests.pw.toml | 6 +++--- mods/endertanks.pw.toml | 6 +++--- mods/in-control.pw.toml | 6 +++--- mods/john_mod_reborn.pw.toml | 8 +++---- mods/macaws-lights-and-lamps.pw.toml | 6 +++--- mods/nomowanderer.pw.toml | 6 +++--- mods/pipez.pw.toml | 6 +++--- mods/polymorph.pw.toml | 8 +++---- mods/rechiseled.pw.toml | 6 +++--- mods/selene.pw.toml | 6 +++--- mods/shetiphiancore.pw.toml | 6 +++--- mods/sophisticated-backpacks.pw.toml | 6 +++--- mods/sophisticated-core.pw.toml | 6 +++--- mods/terrablender.pw.toml | 6 +++--- pack.toml | 2 +- 19 files changed, 83 insertions(+), 80 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1b76737..eff5f2e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -75,18 +75,18 @@ This will be the initial release for the production server. I will avoid adding - Botany Trees 5.0.5 -> 5.0.7 - Canary 0.1.10 -> 0.2.7 - Collective 6.53 -> 6.62 -- Connectivity 3.5 -> 4.2 +- Connectivity 3.5 -> 4.4 - Cooking for Blockheads 13.3.1 -> 13.3.2 - Crafting Tweaks 15.1.6 -> 15.1.7 -- Create 0.5.0.i -> 0.5.1.b +- Create 0.5.0.i -> 0.5.1.c - Create Crafts and Additions 1.19.2-20230411a -> 1.19.2-20230623a - Create Deco 1.3.1 -> 1.3.3 - CreativeCore 2.9.3 -> 2.9.4 - Cucumber Library 6.0.6 -> 6.0.7 - Curios API 5.1.4.0 -> 5.1.4.1 - Dark Utilities 13.1.7 -> 13.1.9 -- EnderChests 1.10.1.01 -> 1.10.1.02 -- EnderTanks 1.12.1.02 -> 1.12.1.03 +- EnderChests 1.10.1.01 -> 1.10.1.03 +- EnderTanks 1.12.1.02 -> 1.12.1.04 - Extreme Reactors 2.0.62 -> 2.0.64 - Falling Leaves (Forge) 2.0.0-alpha+20221129-2000 -> 1.3.1 - FastWorkbench 7.1.1 -> 7.1.3 @@ -95,7 +95,7 @@ This will be the initial release for the production server. I will avoid adding - FTB Chunks 1902.3.21-build 266 -> 1902.3.22-build 271 - FTB Library (Forge) 1902.3.18-build.208 -> 1902.3.19-build.214 - FTB Teams (Forge) 1902.2.13-build 100 -> 1902.2.14-build 123 -- In Control! 7.1.3 -> 7.1.8 +- In Control! 7.1.3 -> 7.1.9 - Inventory Sorter 21.0.4 -> 22.0.0 - Iron Jetpacks 6.0.3 -> 6.0.4 - Jade Addons (Forge) 3.4.0 -> 3.5.0 @@ -110,32 +110,35 @@ This will be the initial release for the production server. I will avoid adding - Little Logistics v1.3.2 -> v1.4.0 - Lootr (Forge) 0.4.23.60 -> 0.4.24.62 - Macaw's Bridges 2.0.7 -> 2.1.0 +- Macaw's Lights and Lamps 1.0.5 -> 1.0.6 - Macaw's Paths and Pavings 1.0.2 -> 1.0.3 - Macaw's Roofs 2.2.3 -> 2.2.4 - Macaw's Trapdoors 1.0.9 -> 1.1.0 - Maintenance Mode 1.1.1d -> 1.1.1 - Mindful Darkness 4.0.5 -> 4.0.9 -- Moonlight Lib 2.2.31 -> 2.2.40 -- NoMoWanderer 1.3.6 -> 1.3.10 +- Moonlight Lib 2.2.31 -> 2.2.43 +- NoMoWanderer 1.3.6 -> 1.3.11 - Obscure API 14 -> 15 - Pam's HarvestCraft 2 - Crops 1.0.1 -> 1.0.2 - Pam's HarvestCraft 2 - Food Core 1.0.0 -> 1.0.1 +- Pipez 1.1.0 -> 1.1.2 - Placebo 7.1.8 -> 7.2.0 - PneumaticCraft: Repressurized 4.3.3-22 -> 4.3.5-25 -- Polymorph (Forge) 0.46.1 -> 0.46.2 +- Polymorph (Forge) 0.46.1 -> 0.46.3 - Puzzles Lib 4.4.0 -> 4.4.3 +- Re-chiseled 1.0.13 -> 1.1.0a - RFTools Builder 5.2.6 -> 5.2.8 - Saturn 0.0.3 -> 0.0.4 - Seamless 1.1.0 -> 1.3.0 - SeasonHUD 1.4.12 -> 1.4.19 - Serene Seasons Fix 1.0.7 -> 1.0.8 -- ShetiPhianCore 11.3.01 -> 3.11.3.03 -- Sophisticated Backpacks 3.18.45.819 -> 3.18.51.860 -- Sophisticated Core 0.5.51.251 -> 0.5.73.333 +- ShetiPhianCore 3.11.3.01 -> 3.11.3.04 +- Sophisticated Backpacks 3.18.45.819 -> 3.18.51.868 +- Sophisticated Core 0.5.51.251 -> 0.5.73.346 - Spawn Animations 1.8.2 -> 1.9.1 - SuperMartijn642's Core Lib 1.1.7 -> 1.1.10 -- TerraBlender (Forge) 2.0.1.136 -> 2.0.1.162 -- The John Mod Reborn 1.0.2 -> 1.0.4 +- TerraBlender (Forge) 2.0.1.136 -> 2.0.1.166 +- The John Mod Reborn 1.0.2 -> 1.0.5 - Tom's Trading Network 0.1.0 -> 0.2.1 - Torchmaster 19.2.0 -> 19.2.90 - Trash Cans 1.0.17a -> 1.0.18 diff --git a/index.toml b/index.toml index 23f9348..215c08d 100644 --- a/index.toml +++ b/index.toml @@ -318,7 +318,7 @@ metafile = true [[files]] file = "mods/connectivity.pw.toml" -hash = "7c1bcf396290bf3e32b9f1e44f128d5f1568ab18e48c821defb001c226c59a2e" +hash = "8dfd5ae806895ee6036176990fafede8e5e8d9081f14b9ce241bbc86c79e883c" metafile = true [[files]] @@ -363,7 +363,7 @@ metafile = true [[files]] file = "mods/create.pw.toml" -hash = "89bf28ca15640301ff8cf651ccbcae3047cbaf6af30797f739bfa45d1f2299ce" +hash = "c0c8819595b27c1aff854c8570acc3fe87dd42d88d8219e7abdd4781257d6ac2" metafile = true [[files]] @@ -438,12 +438,12 @@ metafile = true [[files]] file = "mods/enderchests.pw.toml" -hash = "6e17b4821eda72cfe16c10d122bb12f78a89b1a666d1281eb50c3154162c7fe5" +hash = "b6c652fc338c1240b5715f84c251063c04d05bbeb9df36238d4937a20047a7fb" metafile = true [[files]] file = "mods/endertanks.pw.toml" -hash = "f05ce617894b96bcf3f142fecfe1c5fba6ffd2b23950171c4ce54c3b45076e16" +hash = "a0db05b2c7f1dc7d82fa4355dcf0b70f596af095311c17343faee0e818d345ff" metafile = true [[files]] @@ -558,7 +558,7 @@ metafile = true [[files]] file = "mods/in-control.pw.toml" -hash = "40ad6e9970ea5b3a353d3342be25a8f957c129766b13ec70ff5794845df0ada3" +hash = "4166f109b5e11b34d6602e0913bbee457ded9bb10b85faeecec13f7a4843fd58" metafile = true [[files]] @@ -608,7 +608,7 @@ metafile = true [[files]] file = "mods/john_mod_reborn.pw.toml" -hash = "603c1885e86f09dab70970caa8c4730389d8b8a74e20d8cd4042f8e064c8d588" +hash = "15ddc787d32d994b9d9ac26752d7ca638415966b82c8ab5906c80490e1ef104e" metafile = true [[files]] @@ -723,7 +723,7 @@ metafile = true [[files]] file = "mods/macaws-lights-and-lamps.pw.toml" -hash = "30a98c2d143d15fd3916892e63bb0269f4b1124d09220315959f62e3afbf7d0d" +hash = "2d2457ae5c4949c29a2ff048429d61da665fff1262f5a2165715130e2412497a" metafile = true [[files]] @@ -838,7 +838,7 @@ metafile = true [[files]] file = "mods/nomowanderer.pw.toml" -hash = "9ff6c7fbb0d35be54a83d3c7828f4f0f94458e417b9de3186b02aef23926f3c4" +hash = "04110296d4e3f54571fa35d0730a77fde62bb59566995d6b0dafd7113d40014c" metafile = true [[files]] @@ -908,7 +908,7 @@ metafile = true [[files]] file = "mods/pipez.pw.toml" -hash = "52f9c816f8d02ce1ffde51259c39b636207373c2de5ef754adb59e0c8ab39177" +hash = "2bed208b8d1204d4fc2a56d4a1f8e39a058cb5c1c71dbb1252baa4b5a4dfc767" metafile = true [[files]] @@ -938,7 +938,7 @@ metafile = true [[files]] file = "mods/polymorph.pw.toml" -hash = "81e58b7e5e9ebd792107e74590a779f935e150b687aa0b1184e441ec6ba1a44f" +hash = "81fc77ad299e312f43f331ced50b17ef4db92b80992cc8131d0fd958e36c661c" metafile = true [[files]] @@ -968,7 +968,7 @@ metafile = true [[files]] file = "mods/rechiseled.pw.toml" -hash = "07f8d20235699065bdf4616d380ee4f4f5413dce0f53d99a608c8e89ac4350f6" +hash = "1a1a7194cd86bdb367c667dcd65b99772c0a3a2520107a8f0e9bc9b0e2a72d72" metafile = true [[files]] @@ -1088,7 +1088,7 @@ metafile = true [[files]] file = "mods/selene.pw.toml" -hash = "54e8cddcc8fdadda043465955fd392d1d9ba042a1e0e23f1041530137298b6e9" +hash = "ac044748ca461791a080a4f1259451bc4ab258851fab9cc282e7a7c23ec86bcf" metafile = true [[files]] @@ -1103,7 +1103,7 @@ metafile = true [[files]] file = "mods/shetiphiancore.pw.toml" -hash = "7e52fe08dff06c5f76fbb471fd316c382e0e824b5734561279fcf8da814e438c" +hash = "7a6e75d5533bc37a5c47806d476278f87c3a780a37c229320dc0f2340d3fb5aa" metafile = true [[files]] @@ -1123,12 +1123,12 @@ metafile = true [[files]] file = "mods/sophisticated-backpacks.pw.toml" -hash = "9350b6d7d8ab73ce56ad757c577ada54348c9ce1933c1f282da9e76a78b9ec16" +hash = "452ab15c598a5c9a58751f53f223feea2b775f25adad30a1836d9a1b4c51edd8" metafile = true [[files]] file = "mods/sophisticated-core.pw.toml" -hash = "55a4c89651ca5abb88ea33623c255fb0370a4c71f893a5f1d7469d0d372708b6" +hash = "b9f1b6e9a34482cd84a4b359849ecdfdacb7de2c2a030ee1060e92ab476bd1a8" metafile = true [[files]] @@ -1178,7 +1178,7 @@ metafile = true [[files]] file = "mods/terrablender.pw.toml" -hash = "df03692ea55f854de0cfcb021bd960643a6a8f09c03c30456eac10232384a41a" +hash = "354bbfa82fb4018eb6d6d4b9c5a4846161dcd073e85010c936d3d96e454ece5c" metafile = true [[files]] diff --git a/mods/connectivity.pw.toml b/mods/connectivity.pw.toml index 979ddb8..fedb990 100644 --- a/mods/connectivity.pw.toml +++ b/mods/connectivity.pw.toml @@ -1,13 +1,13 @@ name = "Connectivity[Forge/Fabric]" -filename = "connectivity-1.19.2-4.2.jar" +filename = "connectivity-1.19.2-4.4.jar" side = "both" [download] hash-format = "sha1" -hash = "d05267e51aba269e2a44ebb7b07fcb82e0b8b773" +hash = "c26bdcb3d4f2fc969d7f1eb6ef1741dd11ee6366" mode = "metadata:curseforge" [update] [update.curseforge] -file-id = 4521440 +file-id = 4623504 project-id = 470193 diff --git a/mods/create.pw.toml b/mods/create.pw.toml index 7823e5e..3cc7d4f 100644 --- a/mods/create.pw.toml +++ b/mods/create.pw.toml @@ -1,13 +1,13 @@ name = "Create" -filename = "create-1.19.2-0.5.1.b.jar" +filename = "create-1.19.2-0.5.1.c.jar" side = "both" [download] hash-format = "sha1" -hash = "15d57ccb0fb0c2e10673bc685df449db71f9696e" +hash = "f5fbd756a9ee138e3966d597c1f4aebb528785d6" mode = "metadata:curseforge" [update] [update.curseforge] -file-id = 4550987 +file-id = 4625534 project-id = 328085 diff --git a/mods/enderchests.pw.toml b/mods/enderchests.pw.toml index 3656e3e..46a6195 100644 --- a/mods/enderchests.pw.toml +++ b/mods/enderchests.pw.toml @@ -1,13 +1,13 @@ name = "EnderChests" -filename = "enderchests-forge-1.19.0-1.10.1.02.jar" +filename = "enderchests-forge-1.19.0-1.10.1.03.jar" side = "both" [download] hash-format = "sha1" -hash = "633ca44779ecc6037037fe8fe10f82422080bb4e" +hash = "d0c1e302060352f4938514140e2e9504630915a6" mode = "metadata:curseforge" [update] [update.curseforge] -file-id = 4577284 +file-id = 4623810 project-id = 363535 diff --git a/mods/endertanks.pw.toml b/mods/endertanks.pw.toml index 4c01f31..649b8c2 100644 --- a/mods/endertanks.pw.toml +++ b/mods/endertanks.pw.toml @@ -1,13 +1,13 @@ name = "EnderTanks" -filename = "endertanks-forge-1.19.0-1.12.1.03.jar" +filename = "endertanks-forge-1.19.0-1.12.1.04.jar" side = "both" [download] hash-format = "sha1" -hash = "01f8bf196bbe2cea5c0efc1eca33eef7c1014f26" +hash = "bc9dbd1ca74a8768df758320a5f711d437b44a45" mode = "metadata:curseforge" [update] [update.curseforge] -file-id = 4577294 +file-id = 4623823 project-id = 59613 diff --git a/mods/in-control.pw.toml b/mods/in-control.pw.toml index 0425b21..33cfa9d 100644 --- a/mods/in-control.pw.toml +++ b/mods/in-control.pw.toml @@ -1,13 +1,13 @@ name = "In Control!" -filename = "incontrol-1.19-7.1.8.jar" +filename = "incontrol-1.19-7.1.9.jar" side = "both" [download] hash-format = "sha1" -hash = "b43394b4ab06bcb3de9c33456b2f41a1e9f45d5b" +hash = "c4fb923bdf266bf28b7f9b39c8a56b5c2c6b2180" mode = "metadata:curseforge" [update] [update.curseforge] -file-id = 4561680 +file-id = 4619381 project-id = 257356 diff --git a/mods/john_mod_reborn.pw.toml b/mods/john_mod_reborn.pw.toml index 1d7e4cb..a4f18a3 100644 --- a/mods/john_mod_reborn.pw.toml +++ b/mods/john_mod_reborn.pw.toml @@ -1,13 +1,13 @@ name = "The John Mod Reborn" -filename = "John_Mod_Reborn_1.0.4_mc1.19.2.jar" +filename = "John_Mod_Reborn_1.0.5_mc1.19.2.jar" side = "both" [download] -url = "https://cdn.modrinth.com/data/wbFL8rKi/versions/jsenqclc/John_Mod_Reborn_1.0.4_mc1.19.2.jar" +url = "https://cdn.modrinth.com/data/wbFL8rKi/versions/7EJCBPnq/John_Mod_Reborn_1.0.5_mc1.19.2.jar" hash-format = "sha1" -hash = "a0c7d5513ba4a16618e49cd6a56a2324ae826e17" +hash = "83b6a20164042f09233807aff19a5c1ca75088f9" [update] [update.modrinth] mod-id = "wbFL8rKi" -version = "jsenqclc" +version = "7EJCBPnq" diff --git a/mods/macaws-lights-and-lamps.pw.toml b/mods/macaws-lights-and-lamps.pw.toml index 78f7ee1..b181632 100644 --- a/mods/macaws-lights-and-lamps.pw.toml +++ b/mods/macaws-lights-and-lamps.pw.toml @@ -1,13 +1,13 @@ name = "Macaw's Lights and Lamps" -filename = "mcw-lights-1.0.5-mc1.19.2forge.jar" +filename = "mcw-lights-1.0.6-mc1.19.2forge.jar" side = "both" [download] hash-format = "sha1" -hash = "a6cc2c9a32a40e51dd130fe2aa8e17a80d142a6b" +hash = "adc167203e86b60a50b527f2962d2923bfc4a406" mode = "metadata:curseforge" [update] [update.curseforge] -file-id = 4358264 +file-id = 4618179 project-id = 502372 diff --git a/mods/nomowanderer.pw.toml b/mods/nomowanderer.pw.toml index 9d8a7ac..ba754d7 100644 --- a/mods/nomowanderer.pw.toml +++ b/mods/nomowanderer.pw.toml @@ -1,13 +1,13 @@ name = "NoMoWanderer" -filename = "nomowanderer-1.19.2_1.3.10.jar" +filename = "nomowanderer-1.19.2_1.3.11.jar" side = "both" [download] hash-format = "sha1" -hash = "f5a0b288f73d75e4736b2d3374e043d68e3a81b6" +hash = "e5cf29a6880ebf69f822ca0c4e059db601c40b5c" mode = "metadata:curseforge" [update] [update.curseforge] -file-id = 4608103 +file-id = 4621979 project-id = 354428 diff --git a/mods/pipez.pw.toml b/mods/pipez.pw.toml index 29c6465..936c116 100644 --- a/mods/pipez.pw.toml +++ b/mods/pipez.pw.toml @@ -1,13 +1,13 @@ name = "Pipez" -filename = "pipez-1.19.2-1.1.0.jar" +filename = "pipez-1.19.2-1.1.2.jar" side = "both" [download] hash-format = "sha1" -hash = "740f05030059ffe6da2e0ba8f4f451874688bdde" +hash = "bbc86ff6415261559e33cd8c4545ce0e8706ce23" mode = "metadata:curseforge" [update] [update.curseforge] -file-id = 4496931 +file-id = 4625951 project-id = 443900 diff --git a/mods/polymorph.pw.toml b/mods/polymorph.pw.toml index a99e12d..783327b 100644 --- a/mods/polymorph.pw.toml +++ b/mods/polymorph.pw.toml @@ -1,13 +1,13 @@ -name = "Polymorph (Forge)" -filename = "polymorph-forge-0.46.2+1.19.2.jar" +name = "Polymorph (Fabric/Forge/Quilt)" +filename = "polymorph-forge-0.46.3+1.19.2.jar" side = "both" [download] hash-format = "sha1" -hash = "0f9a6dc6748a1bfb8a10ab7c7d4c920d2c7d0260" +hash = "e9c35add859bb9af5c875c87ae2397650120635b" mode = "metadata:curseforge" [update] [update.curseforge] -file-id = 4617467 +file-id = 4618423 project-id = 388800 diff --git a/mods/rechiseled.pw.toml b/mods/rechiseled.pw.toml index 80daa6f..5e11512 100644 --- a/mods/rechiseled.pw.toml +++ b/mods/rechiseled.pw.toml @@ -1,13 +1,13 @@ name = "Re-chiseled" -filename = "rechiseled-1.0.13-forge-mc1.19.jar" +filename = "rechiseled-1.1.0a-forge-mc1.19.2.jar" side = "both" [download] hash-format = "sha1" -hash = "03c811730aef6777d69d7d7d0c1f1af31d05ea66" +hash = "9db53fbffae82b6a258649f720746524f27a32cf" mode = "metadata:curseforge" [update] [update.curseforge] -file-id = 4498523 +file-id = 4598520 project-id = 558998 diff --git a/mods/selene.pw.toml b/mods/selene.pw.toml index f4484f2..216649e 100644 --- a/mods/selene.pw.toml +++ b/mods/selene.pw.toml @@ -1,13 +1,13 @@ name = "Moonlight Lib" -filename = "moonlight-1.19.2-2.2.40-forge.jar" +filename = "moonlight-1.19.2-2.2.43-forge.jar" side = "both" [download] hash-format = "sha1" -hash = "748c2293a47e691727d46d8e00c30f30d6839e42" +hash = "5b4ecf1b46b0f8cc309fa008c4f858534ccf4ca3" mode = "metadata:curseforge" [update] [update.curseforge] -file-id = 4606361 +file-id = 4620027 project-id = 499980 diff --git a/mods/shetiphiancore.pw.toml b/mods/shetiphiancore.pw.toml index 0057835..9180d6a 100644 --- a/mods/shetiphiancore.pw.toml +++ b/mods/shetiphiancore.pw.toml @@ -1,13 +1,13 @@ name = "ShetiPhianCore" -filename = "shetiphiancore-forge-1.19.0-3.11.3.03.jar" +filename = "shetiphiancore-forge-1.19.0-3.11.3.04.jar" side = "both" [download] hash-format = "sha1" -hash = "b810023c34d40ecfb248c3885131b2842a97810e" +hash = "3305b35ed1e2422de7adef1c6838ae8417af5627" mode = "metadata:curseforge" [update] [update.curseforge] -file-id = 4577274 +file-id = 4623803 project-id = 71738 diff --git a/mods/sophisticated-backpacks.pw.toml b/mods/sophisticated-backpacks.pw.toml index a62eeb7..4dcf815 100644 --- a/mods/sophisticated-backpacks.pw.toml +++ b/mods/sophisticated-backpacks.pw.toml @@ -1,13 +1,13 @@ name = "Sophisticated Backpacks" -filename = "sophisticatedbackpacks-1.19.2-3.18.51.860.jar" +filename = "sophisticatedbackpacks-1.19.2-3.18.53.868.jar" side = "both" [download] hash-format = "sha1" -hash = "c702d9ef036e9902632c3b633cd0287c80313e43" +hash = "8fb177da44d4841ec96db99965ee48021c115c65" mode = "metadata:curseforge" [update] [update.curseforge] -file-id = 4608439 +file-id = 4618524 project-id = 422301 diff --git a/mods/sophisticated-core.pw.toml b/mods/sophisticated-core.pw.toml index 5c663b2..2ea18ea 100644 --- a/mods/sophisticated-core.pw.toml +++ b/mods/sophisticated-core.pw.toml @@ -1,13 +1,13 @@ name = "Sophisticated Core" -filename = "sophisticatedcore-1.19.2-0.5.73.333.jar" +filename = "sophisticatedcore-1.19.2-0.5.77.346.jar" side = "both" [download] hash-format = "sha1" -hash = "2262b71bed54f25a79ee8f2dd97becaaa946d14f" +hash = "687a78fa64205e97742c709d5da1d10812ca688a" mode = "metadata:curseforge" [update] [update.curseforge] -file-id = 4608426 +file-id = 4620054 project-id = 618298 diff --git a/mods/terrablender.pw.toml b/mods/terrablender.pw.toml index 20c7653..6663bbd 100644 --- a/mods/terrablender.pw.toml +++ b/mods/terrablender.pw.toml @@ -1,13 +1,13 @@ name = "TerraBlender (Forge)" -filename = "TerraBlender-forge-1.19.2-2.0.1.162.jar" +filename = "TerraBlender-forge-1.19.2-2.0.1.166.jar" side = "both" [download] hash-format = "sha1" -hash = "5c3451d50a317a48fc0e0add1f76a59821609239" +hash = "655f0fe28df282a2f4a14a75f059485ce1c96e46" mode = "metadata:curseforge" [update] [update.curseforge] -file-id = 4567901 +file-id = 4618490 project-id = 563928 diff --git a/pack.toml b/pack.toml index 84f79f0..45f3a41 100644 --- a/pack.toml +++ b/pack.toml @@ -6,7 +6,7 @@ pack-format = "packwiz:1.1.0" [index] file = "index.toml" hash-format = "sha256" -hash = "e07b07b7ee0900ff84e405139e8a792df4f14cd3f42d788f026da62a65070469" +hash = "4b94596a922956aec7715eefd4624cf30d28c83d056bce2eddfb01c0837e0b40" [versions] forge = "43.2.8" From b48c71fe5f682a3acaf021215044e74152997173 Mon Sep 17 00:00:00 2001 From: Thomas Hinkle Date: Wed, 5 Jul 2023 22:57:37 -0500 Subject: [PATCH 36/36] just kidding lol. now it works. --- CHANGELOG.md | 3 ++- index.toml | 9 +++++++-- mods/create.pw.toml | 12 ++++++------ mods/flywheel.pw.toml | 8 ++++---- mods/fusion-connected-textures.pw.toml | 13 +++++++++++++ pack.toml | 2 +- 6 files changed, 33 insertions(+), 14 deletions(-) create mode 100644 mods/fusion-connected-textures.pw.toml diff --git a/CHANGELOG.md b/CHANGELOG.md index eff5f2e..3507c84 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -40,6 +40,7 @@ This will be the initial release for the production server. I will avoid adding - Dynamic Trees + - Adds trees, cactuses, and mushrooms that grow "realistically." - They branch like a tree would, they spread seeds to grow more trees, they rot and grow fungus, etc. +- Fusion (Connected Textures) - Light Overlay - Lets you see light levels by pressing F7. Red = Monsters will spawn anytime, Yellow = Monsters will spawn at night. - Mindful Darkness @@ -78,7 +79,7 @@ This will be the initial release for the production server. I will avoid adding - Connectivity 3.5 -> 4.4 - Cooking for Blockheads 13.3.1 -> 13.3.2 - Crafting Tweaks 15.1.6 -> 15.1.7 -- Create 0.5.0.i -> 0.5.1.c +- Create 0.5.0.i -> 0.5.1.b - Create Crafts and Additions 1.19.2-20230411a -> 1.19.2-20230623a - Create Deco 1.3.1 -> 1.3.3 - CreativeCore 2.9.3 -> 2.9.4 diff --git a/index.toml b/index.toml index 215c08d..db1bade 100644 --- a/index.toml +++ b/index.toml @@ -363,7 +363,7 @@ metafile = true [[files]] file = "mods/create.pw.toml" -hash = "c0c8819595b27c1aff854c8570acc3fe87dd42d88d8219e7abdd4781257d6ac2" +hash = "cdede627056f2cc9d5fe7cb7236e6168ba07c210d331b33bc1d28fab86fc78fc" metafile = true [[files]] @@ -503,7 +503,7 @@ metafile = true [[files]] file = "mods/flywheel.pw.toml" -hash = "3e9b9722da123b1d4120f0d9aba8de9968aba4aad6e9c7564423672171e00d9e" +hash = "3f554b9633d477e4d2b6920d16ffb964fdc5ffef50953216a1d89132c96cba0a" metafile = true [[files]] @@ -546,6 +546,11 @@ file = "mods/full-grown-crop-marker.pw.toml" hash = "520c6425fa4e87ba88a052b06710edbbdb9a64e6880b5bbeeb4985e6a3636ab0" metafile = true +[[files]] +file = "mods/fusion-connected-textures.pw.toml" +hash = "ea63c3493a047fb668d7d204a6d8c7dea8df58081da14774dba90ae55ed6741d" +metafile = true + [[files]] file = "mods/geckolib.pw.toml" hash = "ab7bb11199e592a43542ec0ca68c0536b91b5045e070a77525ae1593ca722b90" diff --git a/mods/create.pw.toml b/mods/create.pw.toml index 3cc7d4f..7b98338 100644 --- a/mods/create.pw.toml +++ b/mods/create.pw.toml @@ -1,13 +1,13 @@ name = "Create" -filename = "create-1.19.2-0.5.1.c.jar" +filename = "create-1.19.2-0.5.1.b.jar" side = "both" [download] +url = "https://cdn.modrinth.com/data/LNytGWDc/versions/6ZQIjBQo/create-1.19.2-0.5.1.b.jar" hash-format = "sha1" -hash = "f5fbd756a9ee138e3966d597c1f4aebb528785d6" -mode = "metadata:curseforge" +hash = "15d57ccb0fb0c2e10673bc685df449db71f9696e" [update] -[update.curseforge] -file-id = 4625534 -project-id = 328085 +[update.modrinth] +mod-id = "LNytGWDc" +version = "6ZQIjBQo" diff --git a/mods/flywheel.pw.toml b/mods/flywheel.pw.toml index 6e489b4..1fd8071 100644 --- a/mods/flywheel.pw.toml +++ b/mods/flywheel.pw.toml @@ -3,11 +3,11 @@ filename = "flywheel-forge-1.19.2-0.6.8.a.jar" side = "both" [download] +url = "https://cdn.modrinth.com/data/5lpsZoRi/versions/wvGHsmul/flywheel-forge-1.19.2-0.6.8.a.jar" hash-format = "sha1" hash = "1dd3bc5a885f260357cab2c8ea61a5879cbe6a73" -mode = "metadata:curseforge" [update] -[update.curseforge] -file-id = 4341471 -project-id = 486392 +[update.modrinth] +mod-id = "5lpsZoRi" +version = "wvGHsmul" diff --git a/mods/fusion-connected-textures.pw.toml b/mods/fusion-connected-textures.pw.toml new file mode 100644 index 0000000..ba8fb84 --- /dev/null +++ b/mods/fusion-connected-textures.pw.toml @@ -0,0 +1,13 @@ +name = "Fusion (Connected Textures)" +filename = "fusion-1.0.3-forge-mc1.19.2.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/p19vrgc2/versions/cZHeUMwR/fusion-1.0.3-forge-mc1.19.2.jar" +hash-format = "sha1" +hash = "60f9e70e62fcfa95707ff2a14ff46f4ae1813001" + +[update] +[update.modrinth] +mod-id = "p19vrgc2" +version = "cZHeUMwR" diff --git a/pack.toml b/pack.toml index 45f3a41..3b31801 100644 --- a/pack.toml +++ b/pack.toml @@ -6,7 +6,7 @@ pack-format = "packwiz:1.1.0" [index] file = "index.toml" hash-format = "sha256" -hash = "4b94596a922956aec7715eefd4624cf30d28c83d056bce2eddfb01c0837e0b40" +hash = "6cd8b6db059be105356120cc025acf337f707a2f35ed4e3a56f51ba85242b450" [versions] forge = "43.2.8"