diff options
| author | LifeIsAParadox <LifeIsAParadox@users.noreply.github.com> | 2021-10-10 22:50:24 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-10-10 22:50:24 +0200 |
| commit | 37d1379d65821e632e5e3e2bef4e3946adf4c5df (patch) | |
| tree | 32aaa7eea851c94771c01ecc0ec5a456228680b3 /src/main/resources | |
| parent | 5fb19e61283bc5a471ab31e96acdd0e5f1b39d1c (diff) | |
| parent | d262e35832bec5ae33c19240204dd8490e4eef1e (diff) | |
| download | Skyblocker-37d1379d65821e632e5e3e2bef4e3946adf4c5df.tar.gz Skyblocker-37d1379d65821e632e5e3e2bef4e3946adf4c5df.tar.bz2 Skyblocker-37d1379d65821e632e5e3e2bef4e3946adf4c5df.zip | |
Merge pull request #19 from ExternalTime/terminal-solvers
Added terminal solvers
Diffstat (limited to 'src/main/resources')
| -rw-r--r-- | src/main/resources/assets/skyblocker/lang/en_us.json | 4 | ||||
| -rw-r--r-- | src/main/resources/fabric.mod.json | 2 | ||||
| -rw-r--r-- | src/main/resources/skyblocker.mixins.json | 5 |
3 files changed, 8 insertions, 3 deletions
diff --git a/src/main/resources/assets/skyblocker/lang/en_us.json b/src/main/resources/assets/skyblocker/lang/en_us.json index 65e5d5f0..2568fecb 100644 --- a/src/main/resources/assets/skyblocker/lang/en_us.json +++ b/src/main/resources/assets/skyblocker/lang/en_us.json @@ -15,6 +15,10 @@ "text.autoconfig.skyblocker.option.locations.dungeons.solveThreeWeirdos": "Solve Three Weirdos Puzzle", "text.autoconfig.skyblocker.option.locations.dungeons.blazesolver": "Solve Blaze Puzzle", "text.autoconfig.skyblocker.option.locations.dungeons.solveTrivia": "Solve Trivia Puzzle", + "text.autoconfig.skyblocker.option.locations.dungeons.terminals": "Terminal Solvers", + "text.autoconfig.skyblocker.option.locations.dungeons.terminals.solveColor": "Solve Select Colored", + "text.autoconfig.skyblocker.option.locations.dungeons.terminals.solveOrder": "Solve Click In Order", + "text.autoconfig.skyblocker.option.locations.dungeons.terminals.solveStartsWith": "Solve Starts With", "text.autoconfig.skyblocker.option.locations.dwarvenMines": "Dwarven Mines", "text.autoconfig.skyblocker.option.locations.dwarvenMines.enableDrillFuel": "Enable Drill Fuel", "text.autoconfig.skyblocker.option.locations.dwarvenMines.solveFetchur": "Solve Fetchur", diff --git a/src/main/resources/fabric.mod.json b/src/main/resources/fabric.mod.json index 9effd387..fbb1dd91 100644 --- a/src/main/resources/fabric.mod.json +++ b/src/main/resources/fabric.mod.json @@ -16,7 +16,7 @@ "environment": "client", "entrypoints": { "client": [ - "me.xmrvizzy.skyblocker.SkyblockerMod" + "me.xmrvizzy.skyblocker.SkyblockerInitializer" ], "modmenu": [ "me.xmrvizzy.skyblocker.config.modmenu.ModMenuEntry" diff --git a/src/main/resources/skyblocker.mixins.json b/src/main/resources/skyblocker.mixins.json index 74a7a3cb..acf0ef45 100644 --- a/src/main/resources/skyblocker.mixins.json +++ b/src/main/resources/skyblocker.mixins.json @@ -9,8 +9,9 @@ "InGameHudMixin", "ItemRendererMixin", "MinecraftClientMixin", - "AccessorWorldRenderer" - + "AccessorWorldRenderer", + "GenericContainerScreenMixin", + "GenericContainerScreenHandlerMixin" ], "injectors": { "defaultRequire": 1 |
