From 8c7de38c28bfe50ae05c6ee69b99ccd89499041b Mon Sep 17 00:00:00 2001 From: AbyssDweller <80689879+AbyssDweller@users.noreply.github.com> Date: Thu, 27 Oct 2022 10:19:02 -0400 Subject: [PATCH 1/5] readd removed stuff --- README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 5a30156..e4883ef 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,7 @@ -# Aspects | Origins Addon - ## Introduction Aspects is an element-based Origins addon, meaning it expands the functions and features of the Origins mod created by Apace100. +Thank you to [AbyssDweller](https://github.com/AbyssDweller) and Perseus#0745 on Discord for help with fixing issues. :) ## Requirements @@ -10,3 +9,5 @@ Aspects is an element-based Origins addon, meaning it expands the functions and - [Origins](https://www.curseforge.com/minecraft/mc-mods/origins) - [Origins Extra Keybinds](https://www.curseforge.com/minecraft/mc-mods/origins-extra-keybinds) +## Further Support +[https://discord.gg/p533EcFTSx](https://discord.gg/p533EcFTSx) \ No newline at end of file From 274f9cac2b154184a27cecfb490f9cb0f4887e7a Mon Sep 17 00:00:00 2001 From: AbyssDweller <80689879+AbyssDweller@users.noreply.github.com> Date: Thu, 27 Oct 2022 10:20:09 -0400 Subject: [PATCH 2/5] fix required java (idk how it worked before) --- src/main/resources/aspects.mixins.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/resources/aspects.mixins.json b/src/main/resources/aspects.mixins.json index 1f4dd34..514b170 100644 --- a/src/main/resources/aspects.mixins.json +++ b/src/main/resources/aspects.mixins.json @@ -2,7 +2,7 @@ "required": true, "minVersion": "0.8", "package": "net.fabricmc.fishplex.mixin", - "compatibilityLevel": "JAVA_16", + "compatibilityLevel": "JAVA_17", "mixins": [ ], "client": [ From fd137542a3b6d60a158ca674b7ada651883027a5 Mon Sep 17 00:00:00 2001 From: AbyssDweller <80689879+AbyssDweller@users.noreply.github.com> Date: Thu, 27 Oct 2022 10:20:12 -0400 Subject: [PATCH 3/5] Update .gitignore --- .gitignore | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/.gitignore b/.gitignore index 1db5bbd..dedcde5 100644 --- a/.gitignore +++ b/.gitignore @@ -7,3 +7,16 @@ /saves Aspects.code-workspace .DS_Store +.idea/workspace.xml +.idea/vcs.xml +.idea/runConfigurations/Minecraft_Server.xml +.idea/runConfigurations/Minecraft_Client.xml +.idea/modules/Aspects-Continued.test.iml +.idea/modules/Aspects-Continued.main.iml +.idea/misc.xml +.idea/jarRepositories.xml +.idea/gradle.xml +.idea/discord.xml +.idea/compiler.xml +.idea/codeStyles/Project.xml +.idea/codeStyles/codeStyleConfig.xml From f86f1d3c9f1355dca0d65d469671a5f8a22fb22d Mon Sep 17 00:00:00 2001 From: AbyssDweller <80689879+AbyssDweller@users.noreply.github.com> Date: Thu, 27 Oct 2022 10:21:06 -0400 Subject: [PATCH 4/5] fix links --- src/main/resources/fabric.mod.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/resources/fabric.mod.json b/src/main/resources/fabric.mod.json index 8c5829a..1036bb6 100644 --- a/src/main/resources/fabric.mod.json +++ b/src/main/resources/fabric.mod.json @@ -9,9 +9,9 @@ "Fishplex" ], "contact": { - "homepage": "https://github.com/missingbinary/Aspects", - "sources": "https://github.com/missingbinary/Aspects", - "issues": "https://github.com/missingbinary/Aspects/issues" + "homepage": "https://github.com/Fishplex/Aspects", + "sources": "https://github.com/Fishplex/Aspects", + "issues": "https://github.com/Fishplex/Aspects/issues" }, "license": "CC0-1.0", From 07e3c86015c2733f247a83a59be782e36a0cc32c Mon Sep 17 00:00:00 2001 From: AbyssDweller <80689879+AbyssDweller@users.noreply.github.com> Date: Thu, 27 Oct 2022 10:24:22 -0400 Subject: [PATCH 5/5] update --- build.gradle | 2 +- remappedSrc/net/fabricmc/fishplex/Aspects.java | 2 -- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/build.gradle b/build.gradle index 7158046..57eb7c9 100644 --- a/build.gradle +++ b/build.gradle @@ -1,5 +1,5 @@ plugins { - id 'fabric-loom' version '0.12-SNAPSHOT' + id 'fabric-loom' version '1.0-SNAPSHOT' id 'maven-publish' } diff --git a/remappedSrc/net/fabricmc/fishplex/Aspects.java b/remappedSrc/net/fabricmc/fishplex/Aspects.java index 919f082..04bad4e 100644 --- a/remappedSrc/net/fabricmc/fishplex/Aspects.java +++ b/remappedSrc/net/fabricmc/fishplex/Aspects.java @@ -29,7 +29,5 @@ public class Aspects implements ModInitializer { Registry.register(Registry.ITEM, new Identifier("aspects", "geo_diamond"), GEO_DIAMOND); Registry.register(Registry.ITEM, new Identifier("aspects", "ordo_star"), ORDO_STAR); Registry.register(Registry.ITEM, new Identifier("aspects", "perditio_bone"), PERDITIO_BONE); - LOGGER.info("Hello from Aspects :D"); - } }