diff options
author | nea <nea@nea.moe> | 2023-05-07 12:22:36 +0200 |
---|---|---|
committer | nea <nea@nea.moe> | 2023-05-08 00:17:34 +0200 |
commit | 942dd629efbf12183b1c5f5a966c36d4b0647a6b (patch) | |
tree | 407e8d2cdcfefa77673c768e5126857a86ddb89a /src/main/resources | |
parent | 229f724ef4a0a4cbc426f31e27f9a57e9b1307c9 (diff) | |
download | Firmament-942dd629efbf12183b1c5f5a966c36d4b0647a6b.tar.gz Firmament-942dd629efbf12183b1c5f5a966c36d4b0647a6b.tar.bz2 Firmament-942dd629efbf12183b1c5f5a966c36d4b0647a6b.zip |
Add fishing particle highlighter
Currently does not work when sneaking or when the bobber moves too much, since the position desyncs with the server
Diffstat (limited to 'src/main/resources')
-rw-r--r-- | src/main/resources/assets/notenoughupdates/lang/en_us.json | 6 | ||||
-rw-r--r-- | src/main/resources/notenoughupdates.mixins.json | 4 |
2 files changed, 7 insertions, 3 deletions
diff --git a/src/main/resources/assets/notenoughupdates/lang/en_us.json b/src/main/resources/assets/notenoughupdates/lang/en_us.json index e9d8ea5..e688eb7 100644 --- a/src/main/resources/assets/notenoughupdates/lang/en_us.json +++ b/src/main/resources/assets/notenoughupdates/lang/en_us.json @@ -19,6 +19,8 @@ "notenoughupdates.sbinfo.gametype": "Locraw Gametype: %s", "notenoughupdates.sbinfo.mode": "Locraw Mode: %s", "notenoughupdates.sbinfo.map": "Locraw Map: %s", - "neu.config.fairysouls.show": "Show Fairy Soul Waypoints", - "neu.config.fairysouls.reset": "Reset Collected Fairy Souls" + "neu.config.fairy-souls.show": "Show Fairy Soul Waypoints", + "neu.config.fairy-souls.reset": "Reset Collected Fairy Souls", + "neu.config.fishing-warning.display-warning": "Display a warning when you are about to hook a fish", + "neu.config.fishing-warning.highlight-wake-chain": "Highlight fishing particles" } diff --git a/src/main/resources/notenoughupdates.mixins.json b/src/main/resources/notenoughupdates.mixins.json index ce2317a..2b3a4e2 100644 --- a/src/main/resources/notenoughupdates.mixins.json +++ b/src/main/resources/notenoughupdates.mixins.json @@ -12,7 +12,9 @@ "devenv.DisableCommonPacketWarnings" ], "mixins": [ - "devenv.DisableInvalidFishingHook" + "MixinClientPacketHandler", + "devenv.DisableInvalidFishingHook", + "devenv.MixinScoreboard" ], "injectors": { "defaultRequire": 1 |