Skip to content

Commit

Permalink
Fix Crash on Neo
Browse files Browse the repository at this point in the history
  • Loading branch information
UnRealDinnerbone committed Jan 1, 2024
1 parent 6f4a96f commit 09a5d64
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 27 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -27,3 +27,5 @@ fabric2/run_client/
fabric/run_client/

logs/

neo/runs/

This file was deleted.

46 changes: 23 additions & 23 deletions neo/src/main/resources/META-INF/mods.toml
Original file line number Diff line number Diff line change
@@ -1,29 +1,29 @@
modLoader = "javafml"
loaderVersion = "[44,)"
loaderVersion = "[1,)"
license = "All Rights Reserved unless stated otherwise. Distribution permission is given to FeedTheBeast and CurseForge for use in modpacks"
[[mods]]
modId = "jamd"
version = "${mod_version}"
displayName = "Just Another Mining Dimension"
logoFile = "assets/jamd/logo.png"
credits = ""
authors = "UnRealDinnerbone"
description = "Adds a mining dimension to the game."
modId = "jamd"
version = "${mod_version}"
displayName = "Just Another Mining Dimension"
logoFile = "assets/jamd/logo.png"
credits = ""
authors = "UnRealDinnerbone"
description = "Adds a mining dimension to the game."
[[dependencies.jamd]]
modId = "forge"
mandatory = true
versionRange = "[44,)"
ordering = "NONE"
side = "BOTH"
modId = "neoforge"
required = true
versionRange = "[1.0,)"
ordering = "NONE"
side = "BOTH"
[[dependencies.jamd]]
modId = "minecraft"
mandatory = true
versionRange = "[${minecraft_version}]"
ordering = "NONE"
side = "BOTH"
modId = "minecraft"
required = true
versionRange = "[${minecraft_version}]"
ordering = "NONE"
side = "BOTH"
[[dependencies.jamd]]
modId = "trenzalore"
mandatory = true
versionRange = "[${trenzalore_version},)"
ordering = "NONE"
side = "BOTH"
modId = "trenzalore"
required = true
versionRange = "[${trenzalore_version},)"
ordering = "NONE"
side = "BOTH"

This file was deleted.

0 comments on commit 09a5d64

Please sign in to comment.