Skip to content

Commit 98ca1f0

Browse files
committed
update to 1.18.2
1 parent 47bfa1c commit 98ca1f0

3 files changed

Lines changed: 8 additions & 8 deletions

File tree

gradle.properties

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
org.gradle.jvmargs=-Xmx3G
22
#General
33
#See https://fabricmc.net/develop
4-
minecraft_version=1.18.1
5-
yarn_mappings=1.18.1+build.22
4+
minecraft_version=1.18.2
5+
yarn_mappings=1.18.2+build.3
66
loader_version=0.13.3
77
#Fabric API
8-
fabric_version=0.46.6+1.18
8+
fabric_version=0.51.1+1.18.2
99

10-
trinkets_version=3.2.0
10+
trinkets_version=3.3.0
1111
cloth_version=6.2.57
12-
modmenu_version=3.0.1
12+
modmenu_version=3.2.1
1313

1414
# publishing
1515
modrinth_id=9QyjzbTh
16-
modrinth_game_versions=1.18,1.18.1
16+
modrinth_game_versions=1.18.2
1717
api_package=dev.upcraft.soulbound.api

src/main/java/dev/upcraft/soulbound/Soulbound.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ public class Soulbound implements ModInitializer {
4040
return AutoConfig.getConfigHolder(SoulboundConfig.class);
4141
});
4242
public static final RegistryKey<? extends Registry<SoulboundContainerProvider<?>>> CONTAINERS_KEY = RegistryKey.ofRegistry(new Identifier(MODID, "containers"));
43-
public static final MutableRegistry<SoulboundContainerProvider<?>> CONTAINERS = Util.make(new SimpleRegistry<>(CONTAINERS_KEY, Lifecycle.stable()), it -> ((FabricRegistry) it).build(ImmutableSet.of(RegistryAttribute.PERSISTED)));
43+
public static final MutableRegistry<SoulboundContainerProvider<?>> CONTAINERS = Util.make(new SimpleRegistry<>(CONTAINERS_KEY, Lifecycle.stable(), null), it -> ((FabricRegistry) it).build(ImmutableSet.of(RegistryAttribute.PERSISTED)));
4444
public static final SoulboundEnchantment ENCHANT_SOULBOUND = new SoulboundEnchantment();
4545
public static final SoulboundContainerProvider<PlayerInventoryContainer> PLAYER_CONTAINER_PROVIDER = new PlayerInventoryContainerProvider();
4646

src/main/resources/fabric.mod.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
"requires": {
3939
"fabric": "*",
4040
"cloth-config2": "^6.0.0-0",
41-
"minecraft": ">=1.18.0-0 <=1.18.1",
41+
"minecraft": "~1.18.2-0",
4242
"fabricloader": ">=0.13.0-0",
4343
"java": ">=17"
4444
}

0 commit comments

Comments
 (0)