aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/de/hysky/skyblocker/skyblock
AgeCommit message (Collapse)Author
2024-05-08debloat SkyblockerConfig.java + translate changeYasin
removed text.autoconfig. prefix new way is skyblocker.option.
2024-05-04Merge pull request #669 from SkyblockerMod/1.20.5Aaron
1.20.5 & 1.20.6
2024-05-05Fixes to Garden UI (#682)BigloBot
* Fix Garden UI * Update src/main/java/de/hysky/skyblocker/skyblock/garden/FarmingHud.java Co-authored-by: Kevin <92656833+kevinthegreat1@users.noreply.github.com> * Update src/main/java/de/hysky/skyblocker/skyblock/garden/FarmingHud.java Co-authored-by: Kevin <92656833+kevinthegreat1@users.noreply.github.com> --------- Co-authored-by: Kevin <92656833+kevinthegreat1@users.noreply.github.com>
2024-05-04Refactor WikiLookup error messagesKevinthegreat
2024-05-04Refactor WikiLookup to use optionalsKevinthegreat
2024-05-04Fix wiki lookup crash + other bugAaron
2024-05-02Fix commissions appearing a random order each timeAaron
2024-05-02Fix Quiz Solver CrashAaron
2024-05-01Remove formatting codes from a few forgotten classesAaron
Fixes Quiz, Threee Weirdos and other solvers
2024-05-01Fix StatusBarTrackerKevinthegreat
2024-04-30Make filters ignore formatting codesAaron
The formatting codes caused a mess in longer regexes and are fragile if Hypixel changes them or moves fully to Text components. Hypixel also added emblems that display in dark purple and light blue which were obviously incompatible due to the hardcoded formatting codes.
2024-04-30Fix Status Bar not updating if messages are canceledKevinthegreat
Remove obsolete suppress warnings
2024-04-29Fix VisitorHelperKevinthegreat
2024-04-29Add new commissionAaron
2024-04-29fix div by zeroviciscat
2024-04-29wack fix for Biglo's issueviciscat
revert if you think this is stupid
2024-04-28Add invisible armour stand toggle and dumping head textures to debugAaron
2024-04-28Merge pull request #675 from viciscat/fixes-and-thingsKevin
Fixes and things
2024-04-28Refactor VisitorHelper and head detectionKevinthegreat
2024-04-28Tic Tac Toe Rewrite/RefactorAaron
2024-04-27possible fix for crafting in mirrorverseviciscat
2024-04-27possible royal resident fixviciscat
2024-04-274 Patterns instead of 25000+Aaron
2024-04-27Apply code review suggestionsKevinthegreat
2024-04-26Refactor updated codeKevinthegreat
2024-04-26Pluralize the mixin and accessor packagesAaron
2024-04-26Render the item protection star in backpack previewAaron
Also fixes a missing space infront of a bracket
2024-04-26Rework terminal click marking to fix an edge caseAaron
2024-04-26Fix the exotic tooltip showing up incorrectly due to ARGBAaron
2024-04-26Fix Croesus profitAaron
For some reason it checked the item's name previously by turning the NBT to a string and running .contains bruh then I ported it to lore thinking it'd be same as the actual croesus helper
2024-04-26Fix "What starts with" terminal solverAaron
2024-04-26array listviciscat
2024-04-26Cleanup references to ExtraAttributes and fix a bug relating to itAaron
2024-04-26Fix Nukekubi Head HighlightAaron
2024-04-26replace all hasEnchantments with hasGlintvicisacat
2024-04-26Replace usages of MathHelper#clamp with Java 21's Math#clampAaron
2024-04-26Refactor usages of Optional's orElseThrow to getOrThrowAaron
Mojang's method is more concise and provides far superior error messages incase the value isn't present (like why it happened) whereas with Optionals its just the standard value not present message.
2024-04-26fix long short grass thingvicisacat
2024-04-26Fix HUD Layering finally!Aaron
Also improves the HudRenderEvents implementation to be less fragile
2024-04-26Fix dungeon floor icons having a raveAaron
2024-04-26Fix shortcuts scrollbar X positionAaron
2024-04-26Fix Custom PF rendering separators and headersAaron
2024-04-26Fix Fancy PF crashAaron
2024-04-26Fix backpack previewAaron
2024-04-26Handle removal/flattening of the ExtraAttributes tagAaron
The tag doesn't exist anymore, the data is no longer "nested" under it.
2024-04-26Use after main hud render event to fix F3 layering bugAaron
2024-04-26Simplify armour trim cachingAaron
2024-04-26Refactor MobGlow and MobBoundingBoxes to use pattern matchingAaron
2024-04-26Replace double braced map init with Util.makeAaron
Double braces aren't good and run a risk of causing memory leaks
2024-04-26Refactor pattern matching null cases to be shared with defaultAaron
Didn't know you could do this