-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Forge now compiles, temporarily disabling Quilt
- Loading branch information
1 parent
e33ded9
commit fea64ad
Showing
22 changed files
with
121 additions
and
65 deletions.
There are no files selected for viewing
6 changes: 3 additions & 3 deletions
6
common/src/main/java/com/thepandaparade/create_automative/CreateAutomative.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,6 @@ | ||
loom.platform=forge | ||
loom.platform=forge | ||
create_version = 0.5.1.e-22 | ||
emi_version = 1.1.11+1.20.1 | ||
jei_version = 15.11.2.44 | ||
rei_version = 12.1.740 | ||
recipe_viewer = rei |
16 changes: 16 additions & 0 deletions
16
forge/src/main/java/com/create_automative/forge/CreateAutomativeForge.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
package com.create_automative.forge; | ||
|
||
import com.thepandaparade.create_automative.CreateAutomative; | ||
|
||
import dev.architectury.platform.forge.EventBuses; | ||
import net.minecraftforge.fml.common.Mod; | ||
import net.minecraftforge.fml.javafmlmod.FMLJavaModLoadingContext; | ||
|
||
@Mod(CreateAutomative.MOD_ID) | ||
public class CreateAutomativeForge { | ||
public CreateAutomativeForge() { | ||
// Submit our event bus to let architectury register our content on the right time | ||
EventBuses.registerModEventBus(CreateAutomative.MOD_ID, FMLJavaModLoadingContext.get().getModEventBus()); | ||
CreateAutomative.init(); | ||
} | ||
} |
7 changes: 4 additions & 3 deletions
7
...emod/forge/ExampleExpectPlatformImpl.java → ...omative/forge/TPPCAForgePlatformImpl.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
15 changes: 0 additions & 15 deletions
15
forge/src/main/java/net/examplemod/forge/ExampleModForge.java
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,35 +1,42 @@ | ||
modLoader = "javafml" | ||
loaderVersion = "[47,)" | ||
#issueTrackerURL = "" | ||
license = "Insert License Here" | ||
issueTrackerURL = "https://github.com/ThePandaParade/CreateAutomative/issues" | ||
license = "GPL-v2.1 License" | ||
|
||
[[mods]] | ||
modId = "examplemod" | ||
modId = "create_automative" | ||
version = "${version}" | ||
displayName = "Example Mod" | ||
authors = "Me!" | ||
displayName = "Create: Automative" | ||
authors = "Robyn-Dawn 'ThePandaParade' B. <[email protected]>" | ||
description = ''' | ||
This is an example description! Tell everyone what your mod is about! | ||
Automate everything with Create! | ||
''' | ||
#logoFile = "" | ||
logoFile = "assets/icon.png" | ||
|
||
[[dependencies.examplemod]] | ||
[[dependencies.create_automative]] | ||
modId = "forge" | ||
mandatory = true | ||
versionRange = "[47,)" | ||
ordering = "NONE" | ||
side = "BOTH" | ||
|
||
[[dependencies.examplemod]] | ||
[[dependencies.create_automative]] | ||
modId = "minecraft" | ||
mandatory = true | ||
versionRange = "[1.20.1,)" | ||
ordering = "NONE" | ||
side = "BOTH" | ||
|
||
[[dependencies.examplemod]] | ||
[[dependencies.create_automative]] | ||
modId = "architectury" | ||
mandatory = true | ||
versionRange = "[9.1.12,)" | ||
ordering = "AFTER" | ||
side = "BOTH" | ||
|
||
[[dependencies.create_automative]] | ||
modId = "create" | ||
mandatory = true | ||
versionRange = "[0.4.0,)" | ||
ordering = "AFTER" | ||
side = "BOTH" |
2 changes: 1 addition & 1 deletion
2
...src/main/resources/examplemod.mixins.json → ...n/resources/create_automative.mixins.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"pack": { | ||
"description": "Example Mod", | ||
"description": "Create Automative Recipes", | ||
"pack_format": 15 | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
7 changes: 4 additions & 3 deletions
7
...mod/fabric/ExampleExpectPlatformImpl.java → ...mative/fabric/TPPCAQuiltPlatformImpl.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
13 changes: 13 additions & 0 deletions
13
quilt/src/main/java/com/create_automative/quilt/CreateAutomativeQuilt.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
package com.create_automative.quilt; | ||
|
||
import org.quiltmc.loader.api.ModContainer; | ||
import org.quiltmc.qsl.base.api.entrypoint.ModInitializer; | ||
|
||
import com.thepandaparade.create_automative.CreateAutomative; | ||
|
||
public class CreateAutomativeQuilt implements ModInitializer { | ||
@Override | ||
public void onInitialize(ModContainer mod) { | ||
CreateAutomative.init(); | ||
} | ||
} |
12 changes: 0 additions & 12 deletions
12
quilt/src/main/java/net/examplemod/quilt/ExampleModQuilt.java
This file was deleted.
Oops, something went wrong.
2 changes: 1 addition & 1 deletion
2
...src/main/resources/examplemod.mixins.json → ...n/resources/create_automative.mixins.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,28 @@ | ||
{ | ||
"schema_version": 1, | ||
"mixin": [ | ||
"examplemod.mixins.json", | ||
"examplemod-common.mixins.json" | ||
"create_automative.mixins.json", | ||
"create_automative-common.mixins.json" | ||
], | ||
"quilt_loader": { | ||
"group": "${group}", | ||
"id": "examplemod", | ||
"id": "create_automative", | ||
"version": "${version}", | ||
"metadata": { | ||
"name": "Example Mod", | ||
"description": "This is an example description! Tell everyone what your mod is about!", | ||
"name": "Create: Automative", | ||
"description": "Automate everything with Create!", | ||
"contributors": { | ||
"Me!": "Owner" | ||
"Robyn-Dawn 'ThePandaParade' B. <[email protected]>": "Lead Developer" | ||
}, | ||
"contact": { | ||
"sources": "https://github.com/architectury/architectury-templates" | ||
}, | ||
"icon": "assets/examplemod/icon.png" | ||
"icon": "assets/icon.png" | ||
}, | ||
"intermediate_mappings": "net.fabricmc:intermediary", | ||
"entrypoints": { | ||
"init": [ | ||
"net.examplemod.quilt.ExampleModQuilt" | ||
"net.create_automative.quilt.CreateAutomativeQuilt" | ||
] | ||
}, | ||
"depends": [ | ||
|
@@ -41,6 +41,10 @@ | |
{ | ||
"id": "architectury", | ||
"version": ">=9.1.12" | ||
}, | ||
{ | ||
"id": "create", | ||
"version": ">=0.5.0" | ||
} | ||
] | ||
}, | ||
|