generated from Legacy-Fabric/fabric-example-mod
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/1.4.2-forge' into 1.4.3-forge
# Conflicts: # gradle.properties # src/main/java/fr/catcore/fabricatedforge/mixin/forgefml/entity/mob/MobEntityMixin.java # src/main/java/fr/catcore/fabricatedforge/mixin/forgefml/entity/player/PlayerEntityMixin.java # src/main/java/fr/catcore/fabricatedforge/mixin/forgefml/server/integrated/IntegratedServerMixin.java # src/main/resources/fabric.mod.json # src/main/resources/fml_at.cfg
- Loading branch information
Showing
61 changed files
with
1,323 additions
and
181 deletions.
There are no files selected for viewing
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,32 +1,40 @@ | ||
# gradle | ||
|
||
.gradle/ | ||
build/ | ||
out/ | ||
classes/ | ||
mods/ | ||
|
||
# eclipse | ||
|
||
*.launch | ||
|
||
# idea | ||
|
||
.idea/ | ||
*.iml | ||
*.ipr | ||
*.iws | ||
|
||
# vscode | ||
|
||
.settings/ | ||
.vscode/ | ||
bin/ | ||
.classpath | ||
.project | ||
|
||
# macos | ||
|
||
*.DS_Store | ||
|
||
# fabric | ||
|
||
run/ | ||
|
||
# macos | ||
*.DS_Store | ||
# java | ||
|
||
./ModLoader* | ||
jars/ | ||
remappedSrc/ | ||
hs_err_*.log | ||
replay_*.log | ||
*.hprof | ||
*.jfr |
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
Binary file not shown.
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,5 +1,7 @@ | ||
distributionBase=GRADLE_USER_HOME | ||
distributionPath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5.1-bin.zip | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.2.1-bin.zip | ||
networkTimeout=10000 | ||
validateDistributionUrl=true | ||
zipStoreBase=GRADLE_USER_HOME | ||
zipStorePath=wrapper/dists |
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
Binary file not shown.
Binary file not shown.
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,14 @@ | ||
//project.name = "fabricated-forge-mod-compat" | ||
|
||
dependencies { | ||
// How to add a mod | ||
// add the intermediary jar of the mod in rootfolder/lib with a dummy fabric.mod.json file in it | ||
// if the file is named like "filename-fileversion.jar" then import it this way: | ||
// modCompileOnly(group: "local", name: "filename", version: "fileversion") | ||
modCompileOnly(group: "local", name: "CodeChickenCore", version: "0.6.12") | ||
modCompileOnly(group: "local", name: "NotEnoughItems", version: "1.4.2.1") | ||
} | ||
|
||
base { | ||
archivesName = "fabricated-forge-mod-compat" | ||
} |
9 changes: 9 additions & 0 deletions
9
mod-compat/src/main/java/fr/catcore/fabricatedforge/compat/Dummy.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,9 @@ | ||
package fr.catcore.fabricatedforge.compat; | ||
|
||
import net.fabricmc.loader.api.entrypoint.PreLaunchEntrypoint; | ||
|
||
public class Dummy implements PreLaunchEntrypoint { | ||
@Override | ||
public void onPreLaunch() { | ||
} | ||
} |
Oops, something went wrong.