Skip to content

Commit

Permalink
feat: Update to Minecraft 1.20.2
Browse files Browse the repository at this point in the history
  • Loading branch information
BlayTheNinth committed Sep 26, 2023
1 parent 38b350c commit 75a460a
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 16 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1 +1 @@
- Updated to Minecraft 1.20
- Updated to Minecraft 1.20.2
6 changes: 3 additions & 3 deletions fabric/src/main/resources/fabric.mod.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,10 @@
"forgivingvoid.mixins.json"
],
"depends": {
"balm-fabric": ">=7.0.0",
"fabricloader": ">=0.14.21",
"balm-fabric": ">=8.0.0",
"fabricloader": ">=0.14.22",
"fabric-api": "*",
"minecraft": ">=1.20",
"minecraft": ">=1.20.2",
"java": ">=17"
},
"suggests": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,14 @@
import net.minecraftforge.fml.IExtensionPoint;
import net.minecraftforge.fml.ModLoadingContext;
import net.minecraftforge.fml.common.Mod;
import net.minecraftforge.network.NetworkConstants;

@Mod(ForgivingVoid.MOD_ID)
public class ForgeForgivingVoid {

public ForgeForgivingVoid() {
Balm.initialize(ForgivingVoid.MOD_ID, ForgivingVoid::initialize);

ModLoadingContext.get().registerExtensionPoint(IExtensionPoint.DisplayTest.class, () -> new IExtensionPoint.DisplayTest(() -> NetworkConstants.IGNORESERVERONLY, (a, b) -> true));
ModLoadingContext.get().registerExtensionPoint(IExtensionPoint.DisplayTest.class, () -> new IExtensionPoint.DisplayTest(() -> IExtensionPoint.DisplayTest.IGNORESERVERONLY, (a, b) -> true));
}

}
20 changes: 10 additions & 10 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -12,24 +12,24 @@ modrinth_forge_project_id = 1vkzEZjE
modrinth_fabric_project_id = 1vkzEZjE

# Minecraft
minecraft_version = 1.20
minecraft_versions = 1.20,1.20.1
minecraft_version_range=[1.20,1.21)
minecraft_version = 1.20.2
minecraft_versions = 1.20.2
minecraft_version_range=[1.20.2,1.21)
java_version = 17

# Balm
balm_version = 7.1.0-SNAPSHOT
balm_version_range = [7.0.0,)
balm_version = 8.1.0-SNAPSHOT
balm_version_range = [8.0.0,)

# Forge
forge_version = 46.0.10
forge_version_range=[46.0.0,)
forge_loader_version_range=[46,)
forge_version = 48.0.1
forge_version_range=[48.0.0,)
forge_loader_version_range=[48,)
forge_mixins=true

# Fabric
fabric_version = 0.83.0+1.20
fabric_loader_version = 0.14.21
fabric_version = 0.89.0+1.20.2
fabric_loader_version = 0.14.22

# Dependencies
jei_minecraft_version=1.19.2
Expand Down

0 comments on commit 75a460a

Please sign in to comment.