diff --git a/mods.txt b/mods.txt index 8f8706d..968a5a7 100644 --- a/mods.txt +++ b/mods.txt @@ -56,7 +56,6 @@ https://mediafiles.forgecdn.net/files/3827/255/geckolib-fabric-1.18-3.0.47.jar https://cdn.modrinth.com/data/9s6osm5g/versions/6.2.62/cloth-config-fabric-6.2.62.jar https://mediafiles.forgecdn.net/files/3668/220/autoconfig1u-3.4.0.jar https://cdn.modrinth.com/data/5aaWibi9/versions/3.3.1/trinkets-3.3.1.jar -https://mediafiles.forgecdn.net/files/3648/220/%5b1.18%2B%5d+Flight+Rings+1.6.2.jar https://mediafiles.forgecdn.net/files/3824/538/ftb-chunks-fabric-1802.3.6-build.147.jar https://mediafiles.forgecdn.net/files/3725/500/ftb-teams-fabric-1802.2.6-build.51.jar https://mediafiles.forgecdn.net/files/3822/757/ftb-library-fabric-1802.3.6-build.123.jar diff --git a/overrides/config/Flight Rings.json5 b/overrides/config/Flight Rings.json5 deleted file mode 100644 index bbf3942..0000000 --- a/overrides/config/Flight Rings.json5 +++ /dev/null @@ -1,37 +0,0 @@ -{ - "basicRingOptions": { - "enabled": true, - "durability": true, - // Durability of basic ring - "durabilityValue": 180, - // Recipe uses an ender eye instead of quartz. §c§lDeletes existing basic rings - "eye": false, - "exhaustion": 0.15000000596046448, - // Basic ring gives slow falling after breaking - "protects": false - }, - "pureRingOptions": { - "durability": true, - // Durability of pure ring - "durabilityValue": 9000, - "exhaustion": 0.029999999329447746, - // Pure ring uses XP instead of durability - "xpEnabled": false, - // How much percentage of the XP bar is used per second - "xpCost": 1.0, - // Pure ring gives you slow falling when out of durability - "protects": true - }, - "misc": { - // Percentage chance per tick (20/s) for a ring to lose durability - "damageChance": 10.0, - // Recipes disabled. §c§lDeletes all existing rings - "treasure": true, - // Enables rings to spawn in chest loot - "chestLoot": false, - // Adds Trinkets support. §c§lDeletes all existing rings - "trinkets": true, - // Rings force flight when equipping or loading world midair - "autofly": true - } -} diff --git a/overrides/kubejs/server_scripts/40-recipes.js b/overrides/kubejs/server_scripts/40-recipes.js index d0232b2..cb44eff 100644 --- a/overrides/kubejs/server_scripts/40-recipes.js +++ b/overrides/kubejs/server_scripts/40-recipes.js @@ -1,18 +1,4 @@ function recipes(ev) { - ev.shaped( - "flight_rings:t_basic_ring_treasure", - [ - "SWS", - "WRW", - "FWF", - ], - { - S: "terramine:mana_crystal", - W: "minecraft:feather", - R: "botania:pixie_ring", - F: "create:encased_fan", - } - ); } onEvent("recipes", recipes);