Skip to content

Commit

Permalink
Merge pull request #12 from AbyssDweller/1.19
Browse files Browse the repository at this point in the history
Fixing some stuff + updating fabric-loom
  • Loading branch information
Fishplex authored Oct 27, 2022
2 parents a41645d + 07e3c86 commit e7286f9
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 9 deletions.
13 changes: 13 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -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
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
# 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

- [Fabric Api](https://www.curseforge.com/minecraft/mc-mods/fabric-api)
- [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)
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
id 'fabric-loom' version '0.12-SNAPSHOT'
id 'fabric-loom' version '1.0-SNAPSHOT'
id 'maven-publish'
}

Expand Down
2 changes: 0 additions & 2 deletions remappedSrc/net/fabricmc/fishplex/Aspects.java
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,5 @@ public void onInitialize() {
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");

}
}
2 changes: 1 addition & 1 deletion src/main/resources/aspects.mixins.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"required": true,
"minVersion": "0.8",
"package": "net.fabricmc.fishplex.mixin",
"compatibilityLevel": "JAVA_16",
"compatibilityLevel": "JAVA_17",
"mixins": [
],
"client": [
Expand Down
6 changes: 3 additions & 3 deletions src/main/resources/fabric.mod.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit e7286f9

Please sign in to comment.