diff options
| author | RoxareX <93204788+RoxareX@users.noreply.github.com> | 2025-06-01 03:33:58 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-06-01 08:33:58 +0800 |
| commit | 3c47d087511440c5d1964b45cad8d483ab4aaa8e (patch) | |
| tree | 75a957766ca698fb4ee314aa8217f55ea87ec5ab /src/main/resources | |
| parent | b64b00c02fcb33fd18160c5e5ce1fc0fa73474a2 (diff) | |
| download | Skyblocker-3c47d087511440c5d1964b45cad8d483ab4aaa8e.tar.gz Skyblocker-3c47d087511440c5d1964b45cad8d483ab4aaa8e.tar.bz2 Skyblocker-3c47d087511440c5d1964b45cad8d483ab4aaa8e.zip | |
Add ingame fishing hook timer display (#1269)
* Add Skyblock fishing hook timer infront of players screen
* Remake Display logic to get rid of flickering
* Remake regex to only get "3.0" number types
Fix to only get the armorstand if it hasn't already been assigned
* Changes required by PR
Remove unused UseItemCallback.EVENT.register
Update deprecated "HudRenderCallback.EVENT.register" to "HudLayerRegistrationCallback.EVENT.register"
Add "ClientPlayConnectionEvents.JOIN.register" to remove null the armorstand if joining a new server
Move "Pattern pattern = Pattern.compile("\\b\\d\\.\\d\\b");" to the top to only do once not every call
Comment out error message
Add HelperCategory.java "Enable Fishing Hook Display" and its description to en_us.json
* Changes required by PR
Remove unused import statements
Remove unused UseItemCallback.EVENT.register
Update depricated "HudRenderCallback.EVENT.register" to "HudLayerRegistrationCallback.EVENT.register"
Add "ClientPlayConnectionEvents.JOIN.register" to remove null the armorstand if joining a new server
Move "Pattern pattern = Pattern.compile("\\b\\d\\.\\d\\b");" to the top to only do once not every call
Comment out error message
Add HelperCategory.java "Enable Fishing Hook Display" and its description to en_us.json
* Changes required by PR
Remove all commented out debugs
Move the option for enabling the enableFishingHookDisplay to be below enableFishingHelper
* Changes required by PR
move variable to the same spot as the option for it
* QOL Changes
Checks if the armorstand is near the players fish bobber so the dmg armorstands show
Diffstat (limited to 'src/main/resources')
| -rw-r--r-- | src/main/resources/assets/skyblocker/lang/en_us.json | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/main/resources/assets/skyblocker/lang/en_us.json b/src/main/resources/assets/skyblocker/lang/en_us.json index b5f2a3db..1c0b1416 100644 --- a/src/main/resources/assets/skyblocker/lang/en_us.json +++ b/src/main/resources/assets/skyblocker/lang/en_us.json @@ -458,6 +458,8 @@ "skyblocker.config.helpers.fishing.minimumNotificationRarity": "Sea Creature Rarity Notification", "skyblocker.config.helpers.fishing.minimumNotificationRarity.@Tooltip": "Minimum rarity for a notification about rare sea creatures. (UNKNOWN = disabled)", "skyblocker.config.helpers.fishing.minimumNotificationRarity.notification": "%s Sea Creature", + "skyblocker.config.helpers.fishing.enableFishingHookDisplay": "Enable Fishing Hook Display", + "skyblocker.config.helpers.fishing.enableFishingHookDisplay.@Tooltip": "Display the skyblock fishing hook timer on the screen instead of above the rod.", "skyblocker.config.helpers.itemPrice.enableItemPriceLookup": "Enable Item Price Lookup", "skyblocker.config.helpers.itemPrice.enableItemPriceLookup.@Tooltip": "Searches the Bazaar and AH for the current hovered item with the F6 key.", |
