[NO-ORBIT] Unified Porting Branch

This commit is contained in:
2024-05-19 19:08:42 +02:00
parent f64efbd228
commit be3fc20246
277 changed files with 8174 additions and 128 deletions

View File

@@ -0,0 +1,36 @@
--- /dev/null
+++ b/NeoForge/src/main/resources/META-INF/mods.toml
@@ -1,0 +1,33 @@
+modLoader = "javafml"
+loaderVersion = "[1,)"
+license = "MIT"
+issueTrackerURL = "https://github.com/firstdarkdev/craterLib/issues"
+
+[[mods]]
+ modId = "${mod_id}"
+ version = "${version}"
+ displayName = "${mod_name}"
+ displayURL = "https://modrinth.com/mod/craterlib"
+ logoFile = "craterlib_logo.png"
+ #credits="Thanks for this example mod goes to Java"
+ authors = "${mod_author}, Zenith"
+ description = '''
+ A library mod used by First Dark Development and HypherionSA Mods
+ '''
+ displayTest = "NONE"
+
+[[dependencies.${ mod_id }]]
+ modId = "neoforge"
+ type="required"
+ required=true
+ versionRange = "[20.4,)"
+ ordering = "NONE"
+ side = "BOTH"
+
+[[dependencies.${ mod_id }]]
+ modId = "minecraft"
+ type="required"
+ required=true
+ versionRange = "[1.20.4,1.20.5)"
+ ordering = "NONE"
+ side = "BOTH"

View File

@@ -0,0 +1,34 @@
--- a/NeoForge/src/main/resources/META-INF/neoforge.mods.toml
+++ /dev/null
@@ -1,31 +1,0 @@
-modLoader = "javafml"
-loaderVersion = "[1,)"
-license = "MIT"
-issueTrackerURL = "https://github.com/firstdarkdev/craterLib/issues"
-
-[[mods]]
- modId = "${mod_id}"
- version = "${version}"
- displayName = "${mod_name}"
- displayURL = "https://modrinth.com/mod/craterlib"
- logoFile = "craterlib_logo.png"
- #credits="Thanks for this example mod goes to Java"
- authors = "${mod_author}, Zenith"
- description = '''
- A library mod used by First Dark Development and HypherionSA Mods
- '''
- displayTest = "NONE"
-
-[[dependencies.${ mod_id }]]
- modId = "neoforge"
- type="required"
- versionRange = "[20.6,)"
- ordering = "NONE"
- side = "BOTH"
-
-[[dependencies.${ mod_id }]]
- modId = "minecraft"
- type="required"
- versionRange = "[1.20.6,1.21)"
- ordering = "NONE"
- side = "BOTH"

View File

@@ -0,0 +1,13 @@
--- a/NeoForge/src/main/resources/craterlib.neoforge.mixins.json
+++ b/NeoForge/src/main/resources/craterlib.neoforge.mixins.json
@@ -5,7 +5,9 @@
"compatibilityLevel": "JAVA_17",
"mixins": [
],
- "client": [],
+ "client": [
+ "ConfigScreenHandlerMixin"
+ ],
"server": [
"ServerGamePacketListenerImplMixin"
],