Merge pull request #12 from AbyssDweller/1.19

Fixing some stuff + updating fabric-loom
This commit is contained in:
Fishplex
2022-10-27 11:44:03 -03:00
committed by GitHub
6 changed files with 21 additions and 9 deletions

13
.gitignore vendored
View File

@@ -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

View File

@@ -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)

View File

@@ -1,5 +1,5 @@
plugins {
id 'fabric-loom' version '0.12-SNAPSHOT'
id 'fabric-loom' version '1.0-SNAPSHOT'
id 'maven-publish'
}

View File

@@ -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");
}
}

View File

@@ -2,7 +2,7 @@
"required": true,
"minVersion": "0.8",
"package": "net.fabricmc.fishplex.mixin",
"compatibilityLevel": "JAVA_16",
"compatibilityLevel": "JAVA_17",
"mixins": [
],
"client": [

View File

@@ -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",