-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
No longer modify inventory if no slots were added
- Loading branch information
1 parent
bd963d6
commit f91a7d7
Showing
9 changed files
with
25 additions
and
10 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
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
6 changes: 2 additions & 4 deletions
6
src/main/java/com/matthewperiut/accessoryapi/config/AccessoryAPIConfigFields.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 |
---|---|---|
@@ -1,19 +1,17 @@ | ||
package com.matthewperiut.accessoryapi.config; | ||
|
||
import blue.endless.jankson.Comment; | ||
import net.fabricmc.loader.api.FabricLoader; | ||
import net.glasslauncher.mods.api.gcapi.api.ConfigName; | ||
import net.glasslauncher.mods.api.gcapi.api.MultiplayerSynced; | ||
|
||
public class AccessoryAPIConfigFields { | ||
@ConfigName("Aether-Style Armor Slots") | ||
@Comment("Essentially whether you want armor slots to the right of the player doll.") | ||
public Boolean aetherStyleArmor = true; | ||
public Boolean aetherStyleArmor = false; | ||
|
||
@MultiplayerSynced | ||
@ConfigName("Armor offset") | ||
@Comment("If you don't know what this does, don't touch it!") | ||
public Integer armorOffset = 4; | ||
|
||
// @ConfigName("UI Style") | ||
// public Style style = Style.AETHER; | ||
} |
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
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