-
Notifications
You must be signed in to change notification settings - Fork 106
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Revert "Port to Forge using Architectury"
This reverts commit abb7542.
- Loading branch information
1 parent
abb7542
commit 568f3e2
Showing
15 changed files
with
108 additions
and
142 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
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,18 +1,20 @@ | ||
# Done to increase the memory available to gradle. | ||
org.gradle.jvmargs=-Xmx2G | ||
org.gradle.jvmargs=-Xmx1G | ||
|
||
# Fabric Properties | ||
# check these on https://fabricmc.net/use | ||
|
||
minecraft_version=1.18.2 | ||
mappings_version=build.3 | ||
forge_version=40.0.52 | ||
yarn_mappings=1.18.2+build.1 | ||
loader_version=0.13.3 | ||
|
||
# Mod Properties | ||
mod_version = 2.12 | ||
maven_group = kaptainwutax | ||
archives_base_name = seedcrackerX | ||
loom.platform=forge | ||
|
||
# Dependencies | ||
fabric_version=0.47.8+1.18.2 | ||
resource_loader_version=0.4.16+55dca1a4d2 | ||
modmenu_version=3.0.1 | ||
cloth_config_version=6.2.57 |
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,11 +1,10 @@ | ||
pluginManagement { | ||
repositories { | ||
jcenter() | ||
maven { | ||
name = 'Fabric' | ||
url = 'https://maven.fabricmc.net/' | ||
} | ||
maven { url "https://maven.architectury.dev/" } | ||
maven { url "https://files.minecraftforge.net/maven/" } | ||
gradlePluginPortal() | ||
} | ||
} |
7 changes: 7 additions & 0 deletions
7
src/api/java/kaptainwutax/seedcrackerX/api/SeedCrackerAPI.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,7 @@ | ||
package kaptainwutax.seedcrackerX.api; | ||
|
||
public interface SeedCrackerAPI { | ||
|
||
void pushWorldSeed(long seed); | ||
|
||
} |
15 changes: 0 additions & 15 deletions
15
src/api/java/kaptainwutax/seedcrackerX/api/SeedPushEvent.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
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
18 changes: 18 additions & 0 deletions
18
src/main/java/kaptainwutax/seedcrackerX/config/ScModMenuEntry.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,18 @@ | ||
package kaptainwutax.seedcrackerX.config; | ||
|
||
|
||
import com.terraformersmc.modmenu.api.ConfigScreenFactory; | ||
import com.terraformersmc.modmenu.api.ModMenuApi; | ||
import net.fabricmc.api.EnvType; | ||
import net.fabricmc.api.Environment; | ||
|
||
|
||
@Environment(EnvType.CLIENT) | ||
public class ScModMenuEntry implements ModMenuApi { | ||
ConfigScreen configscreen = new ConfigScreen(); | ||
|
||
@Override | ||
public ConfigScreenFactory<?> getModConfigScreenFactory() { | ||
return configscreen::getConfigScreenByCloth; | ||
} | ||
} |
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 was deleted.
Oops, something went wrong.
File renamed without changes
Oops, something went wrong.