From d6d50160c9a1e5145119d4b06bcd74e9c662238e Mon Sep 17 00:00:00 2001 From: Kevin <92656833+kevinthegreat1@users.noreply.github.com> Date: Sun, 3 Sep 2023 19:39:31 -0400 Subject: Fix Place Stage figure (#272) --- src/main/resources/assets/skyblocker/tabhud/readme.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/main/resources') diff --git a/src/main/resources/assets/skyblocker/tabhud/readme.md b/src/main/resources/assets/skyblocker/tabhud/readme.md index a50c1f96..9e637500 100644 --- a/src/main/resources/assets/skyblocker/tabhud/readme.md +++ b/src/main/resources/assets/skyblocker/tabhud/readme.md @@ -177,10 +177,12 @@ Example: Stack A, B, C vertically/center-aligned, then align with leftOfCenter - Places a widget at some position, moving it in any direction as needed. Only makes sense to use on one widget at a time, as applying the same Place op to multiple widgtes causes them to be on top of each other. Example: Place A at "center" +``` +-----------+ +-----------+ | | | | | A | | -> v | | | --> | A | | | | | | | | | -+-----------+ +-----------+ \ No newline at end of file ++-----------+ +-----------+ +``` \ No newline at end of file -- cgit From 3f2f7794556c1b8310dc7d4715d5247c02aa9fa8 Mon Sep 17 00:00:00 2001 From: Aaron <51387595+AzureAaron@users.noreply.github.com> Date: Tue, 5 Sep 2023 19:45:40 -0400 Subject: OptiFabric Compatibility (#277) --- src/main/resources/skyblocker.mixins.json | 1 + 1 file changed, 1 insertion(+) (limited to 'src/main/resources') diff --git a/src/main/resources/skyblocker.mixins.json b/src/main/resources/skyblocker.mixins.json index 6ba7dc22..d2465761 100644 --- a/src/main/resources/skyblocker.mixins.json +++ b/src/main/resources/skyblocker.mixins.json @@ -1,6 +1,7 @@ { "required": true, "package": "me.xmrvizzy.skyblocker.mixin", + "plugin": "me.xmrvizzy.skyblocker.compatibility.MixinPlugin", "compatibilityLevel": "JAVA_17", "client": [ "ArmorTrimMixin", -- cgit From 9c7bf54123f366ad90bfafe81e973b731fd6b5b3 Mon Sep 17 00:00:00 2001 From: Kevin <92656833+kevinthegreat1@users.noreply.github.com> Date: Wed, 6 Sep 2023 21:08:50 -0400 Subject: Emi integration (#278) Add EMI integration --- src/main/resources/assets/skyblocker/lang/en_us.json | 4 +++- src/main/resources/fabric.mod.json | 7 +++++-- 2 files changed, 8 insertions(+), 3 deletions(-) (limited to 'src/main/resources') diff --git a/src/main/resources/assets/skyblocker/lang/en_us.json b/src/main/resources/assets/skyblocker/lang/en_us.json index 33f6ff9c..b2c7fe9e 100644 --- a/src/main/resources/assets/skyblocker/lang/en_us.json +++ b/src/main/resources/assets/skyblocker/lang/en_us.json @@ -349,5 +349,7 @@ "skyblocker.quiverWarning.50Left": "You only have 50 Arrows left in your Quiver!", "skyblocker.quiverWarning.10Left": "You only have 10 Arrows left in your Quiver!", - "skyblocker.quiverWarning.empty": "You don't have any more Arrows left in your Quiver!" + "skyblocker.quiverWarning.empty": "You don't have any more Arrows left in your Quiver!", + + "emi.category.skyblocker.skyblock": "Skyblock" } diff --git a/src/main/resources/fabric.mod.json b/src/main/resources/fabric.mod.json index 596fe8cf..cf7e639c 100644 --- a/src/main/resources/fabric.mod.json +++ b/src/main/resources/fabric.mod.json @@ -22,10 +22,13 @@ "dev.cbyrne.betterinject.BetterInject::initialize" ], "modmenu": [ - "me.xmrvizzy.skyblocker.config.modmenu.ModMenuEntry" + "me.xmrvizzy.skyblocker.compatibility.modmenu.ModMenuEntry" ], "rei_client": [ - "me.xmrvizzy.skyblocker.skyblock.rei.SkyblockerREIClientPlugin" + "me.xmrvizzy.skyblocker.compatibility.rei.SkyblockerREIClientPlugin" + ], + "emi": [ + "me.xmrvizzy.skyblocker.compatibility.emi.SkyblockerEMIPlugin" ] }, "mixins": [ -- cgit