Skip to content

Commit

Permalink
Port to 1.21
Browse files Browse the repository at this point in the history
  • Loading branch information
Benonardo committed Jun 26, 2024
1 parent cf3f097 commit 206e15b
Show file tree
Hide file tree
Showing 42 changed files with 69 additions and 87 deletions.
27 changes: 5 additions & 22 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
plugins {
id 'fabric-loom' version '1.6-SNAPSHOT'
id 'fabric-loom' version '1.7-SNAPSHOT'
id 'maven-publish'
id "me.modmuss50.mod-publish-plugin" version "0.4.4"
id "me.modmuss50.mod-publish-plugin" version "0.5.1"
}

sourceCompatibility = JavaVersion.VERSION_21
Expand Down Expand Up @@ -92,28 +92,11 @@ publishing {

loom {
accessWidenerPath = file("src/main/resources/omnihopper.accesswidener")

runs {
datagenClient {
client()
name "Data Generation Client"
vmArg "-Dfabric-api.datagen"
vmArg "-Dfabric-api.datagen.output-dir=${file("src/main/generated")}"
vmArg "-Dfabric-api.datagen.modid=${modid}"

ideConfigGenerated = true
runDir "build/datagen"
}
}
}

sourceSets {
main {
resources {
srcDirs += [
'src/main/generated'
]
}
fabricApi {
configureDataGeneration {
strictValidation = true
}
}

Expand Down
8 changes: 4 additions & 4 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ org.gradle.jvmargs=-Xmx1G

# Fabric Properties
# check these on https://fabricmc.net/develop
minecraft_version=1.20.6
yarn_mappings=1.20.6+build.3
minecraft_version=1.21
yarn_mappings=1.21+build.2
loader_version=0.15.11

# Mod Properties
Expand All @@ -21,9 +21,9 @@ mod_github=enjarai/OmniHopper
git_branch=1.20.5/dev

# Dependencies
fabric_version=0.99.4+1.20.6
fabric_version=0.100.4+1.21
# https://github.com/gniftygnome/cooldown-coordinator/releases
# https://maven.enjarai.dev/#/mirrors/net/gnomecraft/cooldown-coordinator
cooldowncoordinator_version=0.7.2
# https://maven.enjarai.dev/#/releases/nl/enjarai/cicada-lib
cicada_version=0.7.2+1.20.5-and-above
cicada_version=0.8.0+1.21-and-above
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.8-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down
14 changes: 7 additions & 7 deletions gradlew
Original file line number Diff line number Diff line change
Expand Up @@ -145,15 +145,15 @@ if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then
case $MAX_FD in #(
max*)
# In POSIX sh, ulimit -H is undefined. That's why the result is checked to see if it worked.
# shellcheck disable=SC3045
# shellcheck disable=SC2039,SC3045
MAX_FD=$( ulimit -H -n ) ||
warn "Could not query maximum file descriptor limit"
esac
case $MAX_FD in #(
'' | soft) :;; #(
*)
# In POSIX sh, ulimit -n is undefined. That's why the result is checked to see if it worked.
# shellcheck disable=SC3045
# shellcheck disable=SC2039,SC3045
ulimit -n "$MAX_FD" ||
warn "Could not set maximum file descriptor limit to $MAX_FD"
esac
Expand Down Expand Up @@ -202,11 +202,11 @@ fi
# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'

# Collect all arguments for the java command;
# * $DEFAULT_JVM_OPTS, $JAVA_OPTS, and $GRADLE_OPTS can contain fragments of
# shell script including quotes and variable substitutions, so put them in
# double quotes to make sure that they get re-expanded; and
# * put everything else in single quotes, so that it's not re-expanded.
# Collect all arguments for the java command:
# * DEFAULT_JVM_OPTS, JAVA_OPTS, JAVA_OPTS, and optsEnvironmentVar are not allowed to contain shell fragments,
# and any embedded shellness will be escaped.
# * For example: A user cannot expect ${Hostname} to be expanded, as it is an environment variable and will be
# treated as '${Hostname}' itself on the command line.

set -- \
"-Dorg.gradle.appname=$APP_BASE_NAME" \
Expand Down
20 changes: 10 additions & 10 deletions gradlew.bat
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,11 @@ set JAVA_EXE=java.exe
%JAVA_EXE% -version >NUL 2>&1
if %ERRORLEVEL% equ 0 goto execute

echo.
echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
echo.
echo Please set the JAVA_HOME variable in your environment to match the
echo location of your Java installation.
echo. 1>&2
echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 1>&2
echo. 1>&2
echo Please set the JAVA_HOME variable in your environment to match the 1>&2
echo location of your Java installation. 1>&2

goto fail

Expand All @@ -57,11 +57,11 @@ set JAVA_EXE=%JAVA_HOME%/bin/java.exe

if exist "%JAVA_EXE%" goto execute

echo.
echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME%
echo.
echo Please set the JAVA_HOME variable in your environment to match the
echo location of your Java installation.
echo. 1>&2
echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% 1>&2
echo. 1>&2
echo Please set the JAVA_HOME variable in your environment to match the 1>&2
echo location of your Java installation. 1>&2

goto fail

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// 1.20.5 Release Candidate 2 2024-04-21T09:20:57.139581335 Omni-Hopper/Model Definitions
// 1.21 2024-06-26T15:40:02.212562538 Omni-Hopper/Model Definitions
6a9c29f72582051ec7ec4a550b736aa94204e721 assets/omnihopper/models/block/waxed_fluid_omnihopper_down.json
3f39854aef1b1e2d36607fc416d5629be3996421 assets/omnihopper/blockstates/waxed_exposed_fluid_hopper.json
015e913ff2ce37e06a3d9b181c3d2bc997732f03 assets/omnihopper/models/block/waxed_fluid_hopper_north.json
3f39854aef1b1e2d36607fc416d5629be3996421 assets/omnihopper/blockstates/waxed_exposed_fluid_hopper.json
0bb4c2970aba83de5537f749105792efdd993ea7 assets/omnihopper/models/block/waxed_exposed_fluid_hopper_south.json
ad5bad4abff393f59c2e94c085b43d5ee963a16e assets/omnihopper/models/block/waxed_oxidized_fluid_omnihopper_up.json
015e913ff2ce37e06a3d9b181c3d2bc997732f03 assets/omnihopper/models/block/fluid_omnihopper_north.json
Expand Down Expand Up @@ -31,8 +31,8 @@ c6799b7d9c893bcf90df920a9bd5ccecf4be94af assets/omnihopper/models/block/waxed_ex
64f5fb19f65fe2abab8e0c04b0deed1d1a0781aa assets/omnihopper/models/item/waxed_exposed_fluid_omnihopper.json
036756e95e1aa09cc5c4e1133acdc06c14f16f7b assets/omnihopper/models/block/exposed_fluid_omnihopper_north.json
26922733b9fba5d581ab365a975657dc300ae7ba assets/omnihopper/models/item/weathered_fluid_omnihopper.json
14cc567bb28a132a1d6dc53a7103c04094eca443 assets/omnihopper/models/item/waxed_weathered_fluid_hopper.json
4240df82f1f117959c50f970d32b3884d898342a assets/omnihopper/models/item/exposed_fluid_hopper.json
14cc567bb28a132a1d6dc53a7103c04094eca443 assets/omnihopper/models/item/waxed_weathered_fluid_hopper.json
c6799b7d9c893bcf90df920a9bd5ccecf4be94af assets/omnihopper/models/block/waxed_exposed_fluid_omnihopper_up.json
0fae4612c17b86ba19c6df9f54a501ca7f9cd49e assets/omnihopper/blockstates/waxed_weathered_fluid_hopper.json
0b6e3c6dab4679c8d42658d8aa9d7fd37c618f61 assets/omnihopper/models/block/wooden_hopper_north.json
Expand All @@ -42,8 +42,8 @@ faf2923502921a28898c8b9393cc4b3a3d4504b5 assets/omnihopper/models/block/waxed_fl
3b5b32991f9b804806aefc72701e09042d48e109 assets/omnihopper/models/item/waxed_fluid_hopper.json
0fd34ff9f03769331006fa6d142fb106e5bb614f assets/omnihopper/models/block/exposed_fluid_hopper_down.json
afc5547bbfe86fa08f2f1f9a625cf94c72ab93af assets/omnihopper/models/item/wooden_hopper.json
5e2f210cc3399c76a8bfef3059b087bbeb43a449 assets/omnihopper/blockstates/waxed_oxidized_fluid_hopper.json
95f93723e1cb32f615234c52d121c3216e6836f7 assets/omnihopper/blockstates/exposed_fluid_hopper.json
5e2f210cc3399c76a8bfef3059b087bbeb43a449 assets/omnihopper/blockstates/waxed_oxidized_fluid_hopper.json
6d0c9ea2078899e22d474bb8fbd93aad9a167477 assets/omnihopper/models/item/weathered_fluid_hopper.json
2536dcdec959da773017f0084b45c6ce7c720081 assets/omnihopper/models/block/waxed_exposed_fluid_hopper_east.json
af8979739e4bbcc9a2a8c9536762269292095f61 assets/omnihopper/models/block/waxed_oxidized_fluid_hopper_west.json
Expand Down Expand Up @@ -99,8 +99,8 @@ f156ff47769487617520d3a24134e8e40804fa62 assets/omnihopper/blockstates/oxidized_
fac91b9c3369074c1dc59cdb3a0ec477d8afc28f assets/omnihopper/models/block/weathered_fluid_omnihopper_down.json
918bcbc832b1885dc1c87acdcc17b3d79c5a6983 assets/omnihopper/models/block/wooden_hopper_west.json
0fd34ff9f03769331006fa6d142fb106e5bb614f assets/omnihopper/models/block/exposed_fluid_omnihopper_down.json
c6799b7d9c893bcf90df920a9bd5ccecf4be94af assets/omnihopper/models/block/exposed_fluid_hopper_up.json
f87817bfe593be9cf4873e7ca26d99aef284948c assets/omnihopper/models/block/oxidized_fluid_hopper_north.json
c6799b7d9c893bcf90df920a9bd5ccecf4be94af assets/omnihopper/models/block/exposed_fluid_hopper_up.json
86e82703a19860ada5b048e758feb009cbb11288 assets/omnihopper/blockstates/waxed_oxidized_fluid_omnihopper.json
b631c1755274c54d60c297e369e676839c4165c7 assets/omnihopper/models/block/waxed_weathered_fluid_omnihopper_up.json
2536dcdec959da773017f0084b45c6ce7c720081 assets/omnihopper/models/block/exposed_fluid_omnihopper_east.json
Expand All @@ -122,8 +122,8 @@ a518b959fe177b4149daba17136dfdb5cc39c42e assets/omnihopper/blockstates/fluid_omn
2c2a9b0e67ec65a3fb031b9f4745686de0c0e0ab assets/omnihopper/models/block/waxed_fluid_omnihopper_up.json
0bb4c2970aba83de5537f749105792efdd993ea7 assets/omnihopper/models/block/waxed_exposed_fluid_omnihopper_south.json
4b504d766f7a836267dc894211b2fc5f12cf119f assets/omnihopper/models/block/weathered_fluid_hopper_north.json
198e17b0de912d02cfca0bde99514d9de1f0beba assets/omnihopper/models/block/wooden_hopper_south.json
46821eba6e08669117837ccb9b63fc5dcf2a70fa assets/omnihopper/models/item/fluid_omnihopper.json
198e17b0de912d02cfca0bde99514d9de1f0beba assets/omnihopper/models/block/wooden_hopper_south.json
036756e95e1aa09cc5c4e1133acdc06c14f16f7b assets/omnihopper/models/block/exposed_fluid_hopper_north.json
f4cf23b240c03f2bb48d93871bc9776b892f9a18 assets/omnihopper/blockstates/waxed_exposed_fluid_omnihopper.json
f87817bfe593be9cf4873e7ca26d99aef284948c assets/omnihopper/models/block/waxed_oxidized_fluid_hopper_north.json
Expand All @@ -142,8 +142,8 @@ fac91b9c3369074c1dc59cdb3a0ec477d8afc28f assets/omnihopper/models/block/waxed_we
b631c1755274c54d60c297e369e676839c4165c7 assets/omnihopper/models/block/weathered_fluid_omnihopper_up.json
36f0a0aaa21292908d480c6f48c32ad8cc827477 assets/omnihopper/models/item/oxidized_fluid_omnihopper.json
ad5bad4abff393f59c2e94c085b43d5ee963a16e assets/omnihopper/models/block/oxidized_fluid_hopper_up.json
5cd16a3bdfa37147d3260153e29f83fd6c7ede7c assets/omnihopper/models/item/omnihopper.json
745dd7a860cb12c3f58b8f4a406cb32a64f9e669 assets/omnihopper/blockstates/waxed_weathered_fluid_omnihopper.json
5cd16a3bdfa37147d3260153e29f83fd6c7ede7c assets/omnihopper/models/item/omnihopper.json
36c1e0a18411e90239e994141da7145ba778bf11 assets/omnihopper/models/block/waxed_weathered_fluid_omnihopper_south.json
6c329d6c25c821e9aaaac51e35fc9ac8b7d8628e assets/omnihopper/blockstates/oxidized_fluid_omnihopper.json
2c2a9b0e67ec65a3fb031b9f4745686de0c0e0ab assets/omnihopper/models/block/fluid_hopper_up.json
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
// 1.20.5 Release Candidate 2 2024-04-21T09:20:57.138114345 Omni-Hopper/Tags for minecraft:block
8c5812524d817280a216604015f3db142880307d data/minecraft/tags/blocks/mineable/pickaxe.json
1af9bd76ce550c16ba04063b062161b6933877c4 data/minecraft/tags/blocks/mineable/axe.json
// 1.21 2024-06-26T15:40:02.211578202 Omni-Hopper/Tags for minecraft:block
8c5812524d817280a216604015f3db142880307d data/minecraft/tags/block/mineable/pickaxe.json
1af9bd76ce550c16ba04063b062161b6933877c4 data/minecraft/tags/block/mineable/axe.json
42 changes: 21 additions & 21 deletions src/main/generated/.cache/5c2454c9f5d30514859bd8bb0bdb0a7e1b25d12e
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
// 1.20.5 Release Candidate 2 2024-04-21T09:20:57.138769288 Omni-Hopper/Block Loot Tables
c97ea80ae9e2f6bcb9cb0ada4e86fbe4d0b61124 data/omnihopper/loot_tables/blocks/waxed_weathered_fluid_omnihopper.json
b2c7d63169aadecdc4ca0e181cb1b855efa28f6e data/omnihopper/loot_tables/blocks/oxidized_fluid_omnihopper.json
d0bfa2ea8ab7fab1ecac38dea227265a44e08004 data/omnihopper/loot_tables/blocks/waxed_exposed_fluid_hopper.json
7c314001b024f1f02b2e379f28699c98ff5f54f4 data/omnihopper/loot_tables/blocks/wooden_omnihopper.json
7314a203b632ebdf74e60c72020c3ecacfb5bdc4 data/omnihopper/loot_tables/blocks/waxed_oxidized_fluid_hopper.json
c6e0273f10dab3781d4842c34c18cea92e56da1d data/omnihopper/loot_tables/blocks/waxed_fluid_hopper.json
8aa9a2da6e1b5e94b4c9df4d9172582dce20fe51 data/omnihopper/loot_tables/blocks/waxed_fluid_omnihopper.json
a5cce4b5c94d6e5b9021a391f7ce1b5c6e467925 data/omnihopper/loot_tables/blocks/fluid_omnihopper.json
8279acbdd2ddad20e214462122147bb2c6a24351 data/omnihopper/loot_tables/blocks/exposed_fluid_omnihopper.json
835bf08bc61128723835ea5b0dea1d1464081b09 data/omnihopper/loot_tables/blocks/open_box.json
961f749ecc42fcbb87b2d28f13147dddf4110c9d data/omnihopper/loot_tables/blocks/waxed_weathered_fluid_hopper.json
7639cd6bd10d1683d1e5b8384938db0a061908ce data/omnihopper/loot_tables/blocks/omnihopper.json
df24bcc8d4401a44b3f2c4dfd5557d437492b967 data/omnihopper/loot_tables/blocks/weathered_fluid_hopper.json
aed702c6c0604d16002891d0892fd4657804d2cb data/omnihopper/loot_tables/blocks/exposed_fluid_hopper.json
4293274745e4a7285db84ba3b67f0969dedd7bc5 data/omnihopper/loot_tables/blocks/weathered_fluid_omnihopper.json
c03b03b28d4b871096219a86fd96c6bf49627fa4 data/omnihopper/loot_tables/blocks/waxed_exposed_fluid_omnihopper.json
7bb445a14a52cb33282de524984217f02926701d data/omnihopper/loot_tables/blocks/fluid_hopper.json
a7284080447629f3b07ce068aef7d8e4123d072f data/omnihopper/loot_tables/blocks/wooden_hopper.json
7858460d195b493bf87cffc7e25100ff4dac5b49 data/omnihopper/loot_tables/blocks/oxidized_fluid_hopper.json
ebd7ee5fec0b594fe929f8b1febd87d68fb62289 data/omnihopper/loot_tables/blocks/waxed_oxidized_fluid_omnihopper.json
// 1.21 2024-06-26T15:40:02.212056148 Omni-Hopper/Block Loot Tables
a7284080447629f3b07ce068aef7d8e4123d072f data/omnihopper/loot_table/blocks/wooden_hopper.json
b2c7d63169aadecdc4ca0e181cb1b855efa28f6e data/omnihopper/loot_table/blocks/oxidized_fluid_omnihopper.json
a5cce4b5c94d6e5b9021a391f7ce1b5c6e467925 data/omnihopper/loot_table/blocks/fluid_omnihopper.json
8aa9a2da6e1b5e94b4c9df4d9172582dce20fe51 data/omnihopper/loot_table/blocks/waxed_fluid_omnihopper.json
d0bfa2ea8ab7fab1ecac38dea227265a44e08004 data/omnihopper/loot_table/blocks/waxed_exposed_fluid_hopper.json
7314a203b632ebdf74e60c72020c3ecacfb5bdc4 data/omnihopper/loot_table/blocks/waxed_oxidized_fluid_hopper.json
7bb445a14a52cb33282de524984217f02926701d data/omnihopper/loot_table/blocks/fluid_hopper.json
4293274745e4a7285db84ba3b67f0969dedd7bc5 data/omnihopper/loot_table/blocks/weathered_fluid_omnihopper.json
c03b03b28d4b871096219a86fd96c6bf49627fa4 data/omnihopper/loot_table/blocks/waxed_exposed_fluid_omnihopper.json
7c314001b024f1f02b2e379f28699c98ff5f54f4 data/omnihopper/loot_table/blocks/wooden_omnihopper.json
ebd7ee5fec0b594fe929f8b1febd87d68fb62289 data/omnihopper/loot_table/blocks/waxed_oxidized_fluid_omnihopper.json
7858460d195b493bf87cffc7e25100ff4dac5b49 data/omnihopper/loot_table/blocks/oxidized_fluid_hopper.json
7639cd6bd10d1683d1e5b8384938db0a061908ce data/omnihopper/loot_table/blocks/omnihopper.json
c97ea80ae9e2f6bcb9cb0ada4e86fbe4d0b61124 data/omnihopper/loot_table/blocks/waxed_weathered_fluid_omnihopper.json
8279acbdd2ddad20e214462122147bb2c6a24351 data/omnihopper/loot_table/blocks/exposed_fluid_omnihopper.json
835bf08bc61128723835ea5b0dea1d1464081b09 data/omnihopper/loot_table/blocks/open_box.json
df24bcc8d4401a44b3f2c4dfd5557d437492b967 data/omnihopper/loot_table/blocks/weathered_fluid_hopper.json
c6e0273f10dab3781d4842c34c18cea92e56da1d data/omnihopper/loot_table/blocks/waxed_fluid_hopper.json
aed702c6c0604d16002891d0892fd4657804d2cb data/omnihopper/loot_table/blocks/exposed_fluid_hopper.json
961f749ecc42fcbb87b2d28f13147dddf4110c9d data/omnihopper/loot_table/blocks/waxed_weathered_fluid_hopper.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import nl.enjarai.omnihopper.blocks.entity.hopper.HopperBlockEntity;

public class VanillaHopperBehaviour extends ItemHopperBehaviour {
public static final Identifier TYPE_ID = new Identifier("hopper");
public static final Identifier TYPE_ID = Identifier.ofVanilla("hopper");

public VanillaHopperBehaviour(HopperBlockEntity<?> blockEntity) {
super(TYPE_ID, blockEntity);
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/nl/enjarai/omnihopper/items/ModItems.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@

import net.fabricmc.fabric.api.itemgroup.v1.ItemGroupEvents;
import net.minecraft.block.Block;
import net.minecraft.client.item.TooltipType;
import net.minecraft.item.BlockItem;
import net.minecraft.item.Item;
import net.minecraft.item.ItemGroups;
import net.minecraft.item.ItemStack;
import net.minecraft.item.tooltip.TooltipType;
import net.minecraft.registry.Registries;
import net.minecraft.registry.Registry;
import net.minecraft.text.Text;
Expand Down
3 changes: 1 addition & 2 deletions src/main/java/nl/enjarai/omnihopper/util/HasTooltip.java
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
package nl.enjarai.omnihopper.util;


import net.minecraft.client.item.TooltipType;
import net.minecraft.item.Item;
import net.minecraft.item.ItemStack;
import net.minecraft.item.tooltip.TooltipType;
import net.minecraft.text.Style;
import net.minecraft.text.Text;
import net.minecraft.util.Formatting;
Expand Down
10 changes: 5 additions & 5 deletions src/main/java/nl/enjarai/omnihopper/util/TextureMapProvider.java
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,11 @@ static TextureMap forOxidizableHopperType(Identifier id, Oxidizable.OxidationLev

static TextureMap forVanillaHopper() {
return new TextureMap()
.put(TextureKey.PARTICLE, new Identifier("block/hopper_outside"))
.put(TextureKey.SIDE, new Identifier("block/hopper_outside"))
.put(TextureKey.TOP, new Identifier("block/hopper_top"))
.put(TextureKey.BOTTOM, new Identifier("block/hopper_outside"))
.put(TextureKey.INSIDE, new Identifier("block/hopper_inside"));
.put(TextureKey.PARTICLE, Identifier.ofVanilla("block/hopper_outside"))
.put(TextureKey.SIDE, Identifier.ofVanilla("block/hopper_outside"))
.put(TextureKey.TOP, Identifier.ofVanilla("block/hopper_top"))
.put(TextureKey.BOTTOM, Identifier.ofVanilla("block/hopper_outside"))
.put(TextureKey.INSIDE, Identifier.ofVanilla("block/hopper_inside"));
}

static Identifier getSubId(Identifier id, String suffix) {
Expand Down
6 changes: 3 additions & 3 deletions src/main/resources/fabric.mod.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,11 @@
],
"accessWidener" : "omnihopper.accesswidener",
"depends": {
"cooldown-coordinator": "^0.4.3",
"cicada": ">=0.6.0 <1.0.0",
"cooldown-coordinator": ">=0.7.2",
"cicada": ">=0.8.0 <1.0.0",
"fabric": "*",
"fabricloader": ">=0.15",
"minecraft": ">=1.20.5 <=1.20.6",
"minecraft": "1.21.x",
"java": ">=21"
},
"custom": {
Expand Down

0 comments on commit 206e15b

Please sign in to comment.