Skip to content

skip regular lightmap computations with Fullbright & Xray #5464

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged

Conversation

RacoonDog
Copy link
Collaborator

Type of change

  • Bug fix
  • New feature
  • Optimization

Description

instead of overwriting the work done by LightmapTextureManager#update, simply skip the entire function call if applicable

also, replace the createRenderPass call with the more lightweight clearColorTexture call

Related issues

none

How Has This Been Tested?

works on my pc 👍

Checklist:

  • My code follows the style guidelines of this project.
  • I have added comments to my code in more complex areas.
  • I have tested the code in both development and production environments.

@RacoonDog RacoonDog requested a review from MineGame159 June 5, 2025 06:02
@RacoonDog
Copy link
Collaborator Author

Before: https://spark.lucko.me/J8QffK89s1?hl=4094 (~0.20% of render thread)
After: https://spark.lucko.me/uuws554Bjx?hl=1385 (~0.07% of render thread)

Copy link
Member

@MineGame159 MineGame159 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The logic itself looks fine but you are injecting before the profiler push() call, calling pop() and then cancelling the injection

@RacoonDog
Copy link
Collaborator Author

RacoonDog commented Jun 5, 2025

The logic itself looks fine but you are injecting before the profiler push() call, calling pop() and then cancelling the injection

yeah that sounds right to me, i made the normal lightTex profiler location encompass the clearColorTexture() call

(i inject before the push() call, and i call pop() myself because i cancel the rest of the method)

@MineGame159
Copy link
Member

The logic itself looks fine but you are injecting before the profiler push() call, calling pop() and then cancelling the injection

yeah that sounds right to me, i made the normal lightTex profiler location encompass the clearColorTexture call

What? The injection is called before the push() call, so your pop() call not only happens before push() but it never even gets to push() because the method is cancelled.

@RacoonDog
Copy link
Collaborator Author

update: i was the stupid one

@MineGame159 MineGame159 merged commit 19809bc into MeteorDevelopment:master Jun 5, 2025
1 check passed
@RacoonDog RacoonDog deleted the fullbright-skip-lightmap branch June 5, 2025 15:22
gogopowerre added a commit to gogopowerre/meteor-client that referenced this pull request Jun 17, 2025
commit 8e3daf708c1dae665edee4417f37d0824bb57f3f
Author: gogopowerre <freegtavsss@gmail.com>
Date:   Mon Jun 16 18:05:11 2025 -0700

    Revert "fix flight crash"

    This reverts commit 6d76982a87ed175642d4f2ba2703179ab816cde3.

commit cc12d28d348a892bd03da7a110ec296d2d8a3776
Author: chri-k <chri.k@icloud.com>
Date:   Thu Jun 12 17:30:58 2025 +0300

    Fix several intertwined input bugs (#5480)

    - Input.isPressed() accurately reflects keyboard inputs
    - Freecam is not affected by other modules' movement inputs (e.g. AutoWalk)
    - GUIMove does not continuously override key states or emit KeyEvents
    - GUIMove arrow keys interact correctly with Freecam

commit 7fe9330f4caf6a1a8a647144b4078b56047d609d
Author: Gingerbeard <68350259+Gingerbeard5773@users.noreply.github.com>
Date:   Thu Jun 12 10:16:43 2025 -0400

    Spawn Proofer/Light Overlay improvements (#5485)

    - Added optional raycasting for stricter servers.
    - Added blocks per tick option so Spawn Proofer can place faster on servers where allowed.
    - Added adjustable light levels, this allows for players to be able to place blocks wherever regardless of light level (useful for the nether).
    - Added adjustable light levels to the light overlay. This will help a lot when players are trying to spawn proof odd mobs that don't spawn in typical light levels.
    - Fixed Spawn Proofer not placing on soul sand and snow. Light overlay also renders those blocks now.

commit c83ada6e3dd47bc6a879d067f915565ab344f04e
Author: qwertyquarty <142720982+qwertyquarty@users.noreply.github.com>
Date:   Thu Jun 12 15:04:12 2025 +0200

    Add blockstate check to Notebot tuning setup to prevent crashes (#5486)

commit 825cb1279e0536664be2692fb8285f14ac5737a3
Author: RacoonDog <32882447+RacoonDog@users.noreply.github.com>
Date:   Mon Jun 9 11:20:42 2025 -0400

    Define MeteorClient#mc before mixin audit [skip ci]

commit c59a465a6d677c67ba99b424c9fc6c2dc69c4468
Author: chri-k <chri.k@icloud.com>
Date:   Sat Jun 7 21:51:07 2025 +0300

    Add some QoL options to auto-walk (#5440)

    Adds options to disable auto-walk when a movement key is pressed and on vertical movement, adds option to disallow movement into unloaded chunks (set by default)

commit 2c047764f46790d92900f2fd7b0771e73e481c87
Author: Powie69 <88817288+Powie69@users.noreply.github.com>
Date:   Sat Jun 7 20:18:50 2025 +0800

    Add an option to remain sneaking while in freecam (#5472)

commit e1bcf93b9cf0ed96636e199a9b5440c96a7d9c80
Author: Wide_Cat <widecat@duck.com>
Date:   Sat Jun 7 13:09:42 2025 +0100

    Fix a crash with the Jesus module

    closes #5477

commit 45f28057018d5312d42e5856210c32b4551e8dd7
Author: Gingerbeard <fathergingerbeard@gmail.com>
Date:   Fri Jun 6 04:29:23 2025 -0400

    Fixed testInHotbar failing to iterate last slot

commit 19809bc90cec629fec28ebb635e481fddf84ca0a
Author: RacoonDog <32882447+RacoonDog@users.noreply.github.com>
Date:   Thu Jun 5 11:18:19 2025 -0400

    skip regular lightmap computations with Fullbright & Xray (#5464)

commit 6a683bc48391bb8e657b81b33c7b9523a14909bc
Author: Wide_Cat <widecat@duck.com>
Date:   Thu Jun 5 12:41:10 2025 +0100

    cleanup [skip ci]

commit 52bf194dda1873fed34fc3426b8e32be312f04f1
Author: Gingerbeard <68350259+Gingerbeard5773@users.noreply.github.com>
Date:   Thu Jun 5 07:36:16 2025 -0400

    Auto Web improvements (#5419)

    * Added optional raycasting.
    * Added prediction mode, which helps catch fleeing players.
    * Added placement rendering.

commit df2f8b64d794c3f313e5c6cdf43f87b27107e276
Author: Gingerbeard <68350259+Gingerbeard5773@users.noreply.github.com>
Date:   Thu Jun 5 07:28:52 2025 -0400

    Auto Trap major improvements (#5418)

    * Added optional raycasting.
    * Added option to place multiple blocks per tick.
    * Autotrap will now work on players that are overlapping multiple blocks.

commit a31f1baf7dfd1369a941d35cfb566e06a2090512
Author: RacoonDog <32882447+RacoonDog@users.noreply.github.com>
Date:   Thu Jun 5 07:20:48 2025 -0400

    Audit mixins in dev environment (#5457)

commit 19aaa2bbc356ad61313861359650d196ad42bd89
Author: Gingerbeard <fathergingerbeard@gmail.com>
Date:   Wed Jun 4 06:45:20 2025 -0400

    Fixed HoleESP with end exit gate

    Fixed this niche bug I accidentally introduced earlier.

commit d6f7ca9eb495b53aee3f2c4059bca79bfd5768df
Author: RacoonDog <32882447+racoondog@users.noreply.github.com>
Date:   Tue Jun 3 23:56:31 2025 -0400

    fix third person camera position when scaled

commit f6dc9d5af3f4e00735b38e2b123946c9165ae3d1
Author: RacoonDog <32882447+racoondog@users.noreply.github.com>
Date:   Wed Jun 4 00:14:59 2025 -0400

    fix gradle configuration cache task inputs

commit 9b4601de9278e1b1a53d3f63158e0a0061861b4b
Author: RacoonDog <32882447+racoondog@users.noreply.github.com>
Date:   Wed Jun 4 00:11:42 2025 -0400

    fix gradle configuration cache task inputs

commit 133755359b9f57d3d75ee203aaf9aa47f7c5077d
Author: Wide-Cat <74723656+Wide-Cat@users.noreply.github.com>
Date:   Tue Jun 3 14:49:45 2025 +0100

    Suppress unchecked warning [skip ci]

commit 039f912477517af01e63c9dd78a2b4a8097ca998
Author: Big-Iron-Cheems <52252627+Big-Iron-Cheems@users.noreply.github.com>
Date:   Tue Jun 3 12:14:32 2025 +0200

    Fix crash with VFP on 1.8 related to offhand slot not existing

commit cc75985c45789a52b684a0d1946c36d8c4acf0db
Author: RacoonDog <32882447+racoondog@users.noreply.github.com>
Date:   Tue Jun 3 07:16:08 2025 -0400

    fix #5446

commit 80318d22e1627f7e1d01892a513c4bc8bbfe85de
Author: Gingerbeard <68350259+Gingerbeard5773@users.noreply.github.com>
Date:   Mon Jun 2 15:15:34 2025 -0400

    Added raycasting to Hole Filler module (#5415)

commit 0e4b5e6ad1c7d1c154cfff19dd177f3bc38dc29c
Author: Gingerbeard <68350259+Gingerbeard5773@users.noreply.github.com>
Date:   Mon Jun 2 15:05:27 2025 -0400

    Added raycasting to Liquid Filler module (#5412)

commit fda6fed3ff4f5f16dad65ea9430ac4b553e3c321
Author: chri-k <chri.k@icloud.com>
Date:   Sun Jun 1 23:01:38 2025 +0300

    [fix] velocity: partial knockback reduction

commit 8bd3cdaf4d33da315d7e7fe2b4f0745ad5f55443
Author: Wide_Cat <widecat@duck.com>
Date:   Tue May 27 17:03:35 2025 +0100

    Add an option to disable the inventory sorter when in creative mode

    closes #4638

commit d2a3497592f89318ddc502e41a11c78f1e3f3b54
Author: mynameisbob1928 <129603125+mynameisbob1928@users.noreply.github.com>
Date:   Tue May 27 16:54:13 2025 +0100

    Add NBT support to the inventory sorter (#5433)

commit 38c03b15cf0148f87a5ab489c909b8e7a79e8d5c
Author: Wide_Cat <widecat@duck.com>
Date:   Mon May 26 16:25:11 2025 +0100

    Fix NoRender nausea

commit aed558fa2c051ac9012d01f9bdd6949bcefb5b48
Author: NekosAreKawaii <admin@nekosarekawaii.de>
Date:   Mon May 26 15:07:27 2025 +0100

    Fix compatibility with Wurst Client

commit 9da7ad0e07f54c1aa697e3a584184718aa64acf5
Author: Wide_Cat <widecat@duck.com>
Date:   Sun May 18 18:11:24 2025 +0100

    Fix crash on startup with 'Hold My Items'

    closes #5406
    closes #5392

commit 1d2996d9d1393938ba94dd3aa1ead151565b6574
Author: cattyn <60744119+cattyngmd@users.noreply.github.com>
Date:   Sun May 18 19:18:28 2025 +0300

    Added new get method in Settings api (#5385)

commit 92cb11189c85ac7e8aa7ad9af3a8f3db4df5d6f9
Author: Wide_Cat <widecat@duck.com>
Date:   Sun May 18 17:12:08 2025 +0100

    Fix CombatHud player model rendering.

    Moves the rendering logic from PlayerModelHud into a general method in HudRenderer.

    closes #5404
    closes #4395

commit 3293d35913fd8232b2258f760037d6c4d8b33227
Author: chri-k <chri.k@icloud.com>
Date:   Sun May 18 18:43:51 2025 +0300

    Proxy import can now read authentication info (#5396)

    Co-authored-by: Wide_Cat <widecat@duck.com>

commit 5278c12f562efa78c3c0780299f28342715a245c
Author: Mirai <111064735+mirailuv@users.noreply.github.com>
Date:   Sun May 18 17:35:47 2025 +0300

    Added options to disable pitch lock and auto takeoff to ElytraFly bounce (#5405)

    Co-authored-by: Wide_Cat <widecat@duck.com>

commit 504fc3c59ca87a10973e975a6ade5d5c130e0e21
Author: RacoonDog <32882447+RacoonDog@users.noreply.github.com>
Date:   Sun May 18 09:56:01 2025 -0400

    Add ability to nudge hud elements using arrow keys (#5408)

commit d7b50ca0557199c864550a8eca82dc0ff81c357f
Author: RacoonDog <32882447+racoondog@users.noreply.github.com>
Date:   Tue May 13 23:15:05 2025 -0400

    hotfix for meshbuilder segfault & debug

commit b5815ff4d095eeee077b2430e2868ebe3fa76938
Author: RacoonDog <32882447+RacoonDog@users.noreply.github.com>
Date:   Sun May 11 03:43:36 2025 -0400

    Add renderer with depth test enabled into Render3DEvent, improvements to MeshBuilder

    * eagerly resize meshbuilder buffers

    * forgot capacity check

    * lazily allocate buffers

    * pre-sized mesh builders

    * add depth-tested buffers to renderer3d

    * more depth overloads

    * use `Renderer3D` for `LightOverlay`

    * use a separate `Renderer3D` object for depth-test

    * Add missing ensureCapacity call to FullScreenRenderer

    * fix buffer resize crash when using pre-sized meshbuilder ctor

    * correct primitive vertex size

    * add dev environment debugging

    * unmagic the numbers

    * Add debug call into MeshBuilder.color()

    ---------

    Co-authored-by: MineGame159 <petulko08@gmail.com>

commit 1643f09c4b532d309806fde53b4c8b98c9084ac6
Author: Wide_Cat <widecat@duck.com>
Date:   Fri Apr 25 18:33:54 2025 +0100

    Fix some build warnings [skip ci]

commit 3fb19e983706be46bd9665ef71257443da7f1507
Author: Wide_Cat <widecat@duck.com>
Date:   Fri Apr 25 18:27:32 2025 +0100

    Fix player head textures loading corrupted.

commit 12d4b1f1a02b315a94d37f00cd6d1cc97610f3d4
Author: Wide_Cat <widecat@duck.com>
Date:   Fri Apr 25 17:17:32 2025 +0100

    Band-aid fix to various issues caused by player head textures being loaded on the wrong thread.

    It wiped saved accounts and sometimes caused crashes. Not a perfect fix because the textures now load corrupted, but can be improved later.

commit 00f42e09b6868a2dcc770d186bdd4c84f41b2910
Author: Wide_Cat <widecat@duck.com>
Date:   Fri Apr 25 17:08:43 2025 +0100

    Add a 'Copy link' button to AddMicrosoftAccountScreen

commit b5466e42bf5b3f750992dfba8fce746a77cd2abe
Author: MineGame159 <petulko08@gmail.com>
Date:   Fri Apr 25 15:44:09 2025 +0200

    Remove duplicate and unused scale setting from CompassHud

commit 72039bb90a51e991733215b46dffecd3b16c9a88
Author: Wide_Cat <widecat@duck.com>
Date:   Mon Apr 21 19:43:51 2025 +0100

    Fix Fullbright 'luminance' setting not working and also crashing with the latest fabric api (0.121.0+1.21.5)

commit 28d99a76d7a7f27c794cef1f00b0d8265ed3546b
Author: MineGame159 <petulko08@gmail.com>
Date:   Mon Apr 21 14:20:53 2025 +0200

    Fix category window positions not saving

commit d281fe3018cadce0eb5fce036bf00571104d0ced
Author: MineGame159 <petulko08@gmail.com>
Date:   Mon Apr 21 14:08:21 2025 +0200

    Fix Blur artifacts on the edges of the screen

commit 9bd8eff35018da4c567d642982a5bbc8e97bdeaa
Author: Wide_Cat <widecat@duck.com>
Date:   Mon Apr 21 12:11:57 2025 +0100

    Fix a crash caused by trying to get the singleplayer worlds name after leaving it

    closes #5259
    closes #5285

commit 9ee2af66e4fe8ba6bdb3e7fe3b33f04ab26b5a0e
Author: orsondmc <66061159+orsondmc@users.noreply.github.com>
Date:   Mon Apr 21 21:00:47 2025 +1000

    Add WaypointAddedEvent and WaypointRemovedEvent (#5333)

commit 119f0b248acd010cda9351661267047f4ccdc6cc
Author: Wide_Cat <widecat@duck.com>
Date:   Mon Apr 21 11:52:53 2025 +0100

    Fix NoRender 'enchantment glint' crashing

commit 2cb81d31df00689776f87bcfabe6254a7f430816
Author: MineGame159 <petulko08@gmail.com>
Date:   Fri Apr 18 13:48:19 2025 +0200

    Fix pasting default module settings

commit efe98429a9f79ef8839daf505f05d826823f71e8
Author: Big-Iron-Cheems <52252627+Big-Iron-Cheems@users.noreply.github.com>
Date:   Mon Apr 14 19:09:11 2025 +0200

    Refactor mixin `@Redirect`s

commit a46e701361403df05ca7bf39ce27b50e0b71b276
Author: Big-Iron-Cheems <52252627+Big-Iron-Cheems@users.noreply.github.com>
Date:   Wed Apr 16 13:05:20 2025 +0200

    Fix NPE

    Also, properly access Utils in WBlockPosEdit

commit a548ee723a919abf3bfe354a836c7cab0099adf9
Author: Wide_Cat <widecat@duck.com>
Date:   Tue Apr 15 15:58:50 2025 +0100

    Fix NoSlow items

commit 48ebeebb4b27a191a5941afdc381f51afcad5b47
Author: Wide_Cat <widecat@duck.com>
Date:   Sun Apr 13 14:55:33 2025 +0100

    Clean up the HandView 'skip swap animation' setting

commit 5f89e8d09440aa42621888a906ac783127cb1e9e
Author: Big Iron <52252627+Big-Iron-Cheems@users.noreply.github.com>
Date:   Sun Apr 13 15:26:17 2025 +0200

    1.21.5 update (#5265)

    * Initial commit

    TODO: update fabric-renderer-indigo version when it releases

    * fix a bunch of errors

    * Fix even more errors

    Issues with optionals should hopefully now be resolved, unless I missed any. Major issues remaining are with rendering changes, removal of tool/weapon items, and inventory changes.

    * Mixins + version bump

    * Fix issues with inventory and tool/weapon changes

    * Dependency bump

    Fabric renderer Indigo was updated

    * Dependency bump 1.21.5 stable

    * Dependency bump

    * Fixed rendering + some other things

    * Fix scissor not being applied to items in GUI

    * Fixed line rendering in Renderer2D

    * fix EntityOwner npe

    * fix meteor toast

    * `RegistryListSettingScreen` -> `CollectionListSettingScreen`
    relax parameter from `Registry<T>` to `Iterable<T>`

    * remove `PacketUtils.PacketRegistry` in favor of a set

    * Dependency bump

    Also suppress some deprecation warns

    * Properly suppress warns

    Added compile args to provide better logs in the future, suppress launch subproject warns.

    * PacketUtilsUtil fix filter

    Previous comparison wouldn't skip the excluded packets

    * Fix merge commit

    * Minor cleanup

    * Include fabric-api-base in the built jar, since it is required by fabric-resource-loader-v0 now

    * Handle planned deprecation

    Add missing Suppress too

    * remove module registry

    * deprecate `Modules#getList`

    * cache snbt reader

    * PotionSpoof rework

    Spoofing clientside effects is unreliable/broken on pretty much any server.
    Module rebranded as NoStatusEffects with only effect blocking capability.

    * fixes and improvements

    * Fix Shader ESP and Chams

    ---------

    Co-authored-by: Wide_Cat <widecat@duck.com>
    Co-authored-by: MineGame159 <petulko08@gmail.com>
    Co-authored-by: RacoonDog <32882447+racoondog@users.noreply.github.com>
    Co-authored-by: Wide-Cat <74723656+Wide-Cat@users.noreply.github.com>

commit a96efdcdd60ed226650f6fc7f952ba65371bfc4d
Author: Big-Iron-Cheems <52252627+Big-Iron-Cheems@users.noreply.github.com>
Date:   Tue Apr 8 16:35:46 2025 +0200

    Fix Glow ESP

    Authored by WideCat

commit 624bed4d32f9bfa81be6728a6da2f22de3bc4c62
Author: MachieCodes <80427814+machiecodes@users.noreply.github.com>
Date:   Tue Apr 8 07:58:12 2025 -0500

    Refactor AutoReplenish (#5307)

    - clean up the code
    - fix unstackables not getting replenished (mostly)

commit bf4cd6b13502f630129902ac0606f739b6bb8752
Author: 92 <169070113+I21b@users.noreply.github.com>
Date:   Tue Apr 8 21:38:24 2025 +0900

    Update AutoAnvil typo [skip ci] (#5308)

commit 3b524b84b1f0016dedd7fef4809a29d744fc5289
Author: Big Iron <52252627+Big-Iron-Cheems@users.noreply.github.com>
Date:   Tue Apr 8 13:38:31 2025 +0200

    Fix NoRender weather affecting world border and add world border setting (#5310)

    Added world border as its own toggle

commit acc3b5d091c144c530ce7da70f5cf473694706c6
Author: LightningReflex <59992415+LightningReflex@users.noreply.github.com>
Date:   Mon Apr 7 18:00:40 2025 +0200

    Fixed flight abilities toggling when receiving an abilities packet (#5154)

commit 4ab92acc01337072346bdb4e673f04a424f36bf3
Author: Wide_Cat <widecat@duck.com>
Date:   Mon Apr 7 16:47:50 2025 +0100

    small autofish access widener cleanup [skip ci]

commit d60edfdaf1ae6492a9f32a3aeb8dc4763f385b7b
Author: MachieCodes <80427814+machiecodes@users.noreply.github.com>
Date:   Mon Apr 7 10:33:08 2025 -0500

    Rewrite Auto Fish (#5304)

commit 438d1416eface01ae5001286523466cf3be4e377
Author: Pilot1782 <71522520+Pilot1782@users.noreply.github.com>
Date:   Sat Apr 5 11:52:17 2025 -0600

    Update Pitch40 to use more efficient angles (#5221)

commit 30e5ffd38dfd806b037f175e8441dc659c165feb
Author: Wide_Cat <widecat@duck.com>
Date:   Sat Apr 5 17:49:15 2025 +0100

    Added a custom fog colour setting to Ambience

    closes #1936

commit fc78a04f002889b8ff9d1656dc01e7ef1412a988
Author: Wide_Cat <widecat@duck.com>
Date:   Sat Apr 5 17:34:11 2025 +0100

    Add tooltips to the new copy/paste config buttons.

commit 285641d97c5c92b5d24291fc80d122e47c93f8a7
Author: CrowTheBest <62943446+CrowTheBest@users.noreply.github.com>
Date:   Sat Apr 5 18:25:44 2025 +0200

    Added support for line breaks in module descriptions (#5299)

    Was added to WMultiLabel which is used in many other places, but module descriptions are likely the most relevant.

commit ecad5ce56b0caa262adafcb916fb7e1d960ca048
Author: Wide_Cat <widecat@duck.com>
Date:   Fri Apr 4 14:41:49 2025 +0100

    Fix being unable to modify lava opacity in Xray/Wallhack/Ambience

commit 2086b3da30554dc454a7b91130b0a45bf97def26
Author: DrParanoya <158059657+DrParanoya@users.noreply.github.com>
Date:   Thu Apr 3 22:07:09 2025 +0200

    Added player.saturation to Starscript variables (#5300)

commit e2937284a8b9cab8d8eb48081219560abd88af58
Author: ponjomethodos <181954880+ponjomethodos@users.noreply.github.com>
Date:   Mon Mar 31 14:30:42 2025 +0100

    Adds parity for glow item frames in Nametags (#5289)

    Support item descriptions for the item held within a glow item frame, similar to normal item frames.

commit 194cdacb2e8d308656374fb3df4b5cbfbc1341d4
Author: gigglingbed <git.policy948@passmail.net>
Date:   Mon Mar 31 00:37:48 2025 +0100

    config sharing improvements
    - fixed a bug where pasted settings wouldn't copy default setting values
    - added buttons to copy and paste on module and color setting screens
    - added a popup to inform about this feature

commit a7cd68d9486086c1249aca77a1947dda31fd4a24
Author: gigglingbed <git.policy948@passmail.net>
Date:   Sun Mar 30 16:33:17 2025 +0100

    ensure kill aura disables properly

commit 9f6bab1153731d2f77ca10c971035e7f2e7aeb69
Author: arlomcwalter <mcwalterarlo@gmail.com>
Date:   Sun Mar 30 15:51:53 2025 +0100

    ensure kill aura registers when attacking stops
    fixes many minor pausing and swapping related issues in ka

commit 4c35f869120255d58e68a50d32b5463fb07bac6a
Author: RedCarlos26 <58893097+RedCarlos26@users.noreply.github.com>
Date:   Sun Mar 30 02:17:10 2025 -0400

    Added swapBack option

commit 55f1e3f845fdaaed251bbbd145862f4dc98a4166
Author: RacoonDog <32882447+RacoonDog@users.noreply.github.com>
Date:   Mon Mar 24 14:36:11 2025 -0400

    Fix the starscript renderer highlighting variables as keywords (#5260)

commit 75d6efa1a19482ebbeb7ea788558d55a461a6eae
Author: MachieCodes <80427814+machiecodes@users.noreply.github.com>
Date:   Sun Mar 16 16:31:13 2025 -0500

    Standardise scale/background settings in HUD elements (#5257)

commit 55b63545c28f1c1daeab79ad1ac1722416236121
Author: maxsupermanhd <q3.max.2011@ya.ru>
Date:   Thu Feb 27 15:53:16 2025 +0300

    Allow for addons to add their systems

commit 987c57e50eaf3656b8e030ef6f85fd74a06f83fc
Author: nxtcarson <nxtcarson@gmail.com>
Date:   Sat Mar 15 13:53:49 2025 -0400

    Add totem-pop option to AutoLog (#5250)

commit 1e6568dc85f9833e0c50e36f9b542d71b7d67972
Author: DrParanoya <158059657+DrParanoya@users.noreply.github.com>
Date:   Wed Mar 12 13:31:35 2025 +0100

    Alphabetical module sorting p2 [skip ci]

commit 473e547e25c683ba9d8b5556e1f303b9829c8dcc
Author: nxtcarson <nxtcarson@gmail.com>
Date:   Wed Mar 12 08:25:11 2025 -0400

    Add option to Active Modules HUD to display module keybinds (#5246)

commit d58787c741267cccc3d499e88e2da013acfddf1c
Author: Radiane <valentineuh@proton.me>
Date:   Thu Feb 20 17:06:48 2025 +0100

    Tell baritone not to pickup drops from repair blocks in infinity miner (#5196)

commit 6146f5bab9b4df9dcc409483bbd68fd3d61e4505
Author: turtledshell <161905962+turtledshell@users.noreply.github.com>
Date:   Thu Feb 20 08:02:50 2025 -0800

    Fix sneak slowdown being applied twice for CustomPlayerInput (#5205)

    Made Highway Builder sneak aligning slower than it should be

commit f1922d45564c9924d64c5a737217c7da1cb1fd58
Author: Big-Iron-Cheems <52252627+Big-Iron-Cheems@users.noreply.github.com>
Date:   Sun Feb 16 19:02:01 2025 +0100

    Add ModMenu compat

    Clicking the settings button will open the Modules screen

commit 32a91461ee2729d52c885cb3fad5b5c71913753b
Author: Wide_Cat <widecat@duck.com>
Date:   Thu Feb 20 15:43:18 2025 +0000

    Remove the startup update notifier

    Since the versioning scheme change it flashed a popup after every new build, which was annoying. This is a stopgap measure for now; it should probably be added back in some capacity in the future.

commit 3f8efd8c08a309ea7279c1c9116d0aad4e7b8870
Author: DrParanoya <158059657+DrParanoya@users.noreply.github.com>
Date:   Sun Feb 16 01:10:21 2025 +0100

    put swarm in alphabetical position [skip ci]

commit 85a9a7882209ca682c771462d6c2cc85ac20a169
Author: Big-Iron-Cheems <52252627+Big-Iron-Cheems@users.noreply.github.com>
Date:   Wed Feb 5 17:23:20 2025 +0100

    Option: pause NoFall if mace in hand

commit 4c0af90830b17414ff537435da3821331c83f49e
Author: pok <138509773+pokahs@users.noreply.github.com>
Date:   Wed Feb 5 07:43:00 2025 -0500

    Fix Void ESP 'hole-height' setting for the bottom bedrock layer (#5172)

commit ba3660e8c6af4138a0b05cf00cf680b0cdb28536
Author: MachieCodes <80427814+machiecodes@users.noreply.github.com>
Date:   Mon Feb 3 13:41:53 2025 -0600

    Add Config setting to hide modules in the ClickGUI (#5081)

commit d3504211a99966b21f9b88bdc802e7c0121b2471
Author: Wide_Cat <widecat@duck.com>
Date:   Mon Feb 3 14:54:53 2025 +0000

    Remove damage event; fix freecam 'Toggle On Damage' setting

    closes #5167

commit d18a7dba2ca1c165395c29906d24a71b2a741c3d
Author: MineGame159 <petulko08@gmail.com>
Date:   Sat Feb 1 21:08:12 2025 +0100

    Fixed background rendering in the HUD editor while in the main menu

commit db2f720b90bf8978029f10550d46f4d9a2965602
Author: MachieCodes <80427814+machiecodes@users.noreply.github.com>
Date:   Sat Feb 1 13:29:11 2025 -0600

    Update Active Modules (#5089)

commit ebbb2fdc0eed15edb5c40a1779fa27f6b57a30b0
Author: Wide_Cat <widecat@duck.com>
Date:   Sat Feb 1 18:25:27 2025 +0000

    Make No Render 'armor' setting stop rendering worn mob/player heads

    closes #4479

commit 5f16bf69bd857c73ebd5a21f3ef5d66133fc496a
Author: MachieCodes <80427814+machiecodes@users.noreply.github.com>
Date:   Sat Feb 1 12:14:30 2025 -0600

    Update Armor HUD (#5096)

    Co-authored-by: Wide_Cat <widecat@duck.com>

commit ff0e6c6236e242dfa14138c5b6558f66663b4e93
Author: RacoonDog <32882447+RacoonDog@users.noreply.github.com>
Date:   Thu Jan 30 13:18:40 2025 -0500

    enable gradle configuration cache [skip ci] (#5149)

commit 191e4edf003b08bb06fed5cc5959d21a3787af72
Author: Big-Iron-Cheems <52252627+Big-Iron-Cheems@users.noreply.github.com>
Date:   Thu Jan 30 12:44:17 2025 +0100

    Fix NPE for HUD text presets

    If the search bar didn't match any preset, pressing enter would crash due to a null preset trying to be instantiated.

commit d2a9f4ee2188ac04f3dad7e0427c4cf551946d02
Author: RacoonDog <32882447+racoondog@users.noreply.github.com>
Date:   Wed Jan 22 23:27:15 2025 -0500

    disable update checking on unofficial build

commit dc76fe1b7038c270866d18cd86dd279d7d359487
Author: Wide-Cat <74723656+Wide-Cat@users.noreply.github.com>
Date:   Sat Jan 25 21:29:09 2025 +0000

    Major Highway Builder fixes and improvements. (#4999)

    For a highlight of the new features, check the body of the pull request.

commit 979ebf09bb6f7d3765d507184f26e4fcc8241e46
Author: Wide_Cat <widecat@duck.com>
Date:   Sat Jan 25 20:08:18 2025 +0000

    Add setting to Auto Log to control whether to toggle Auto Reconnect

commit b7a0468d909853e7a7f978faa5d87fc7ba44ea55
Author: Big-Iron-Cheems <52252627+Big-Iron-Cheems@users.noreply.github.com>
Date:   Fri Jan 24 18:51:06 2025 +0100

    Replace magic numbers with EntityStatuses

commit 669aaa3a8f8c5abc2022c7617bb0d32a91e2194b
Author: MachieCodes <80427814+machiecodes@users.noreply.github.com>
Date:   Wed Jan 22 07:06:06 2025 -0600

    Small Hud Fix (#5098)

commit 2025789457e5b4c0671f04f0d3c7e0d91a31765c
Author: Wide_Cat <widecat@duck.com>
Date:   Thu Jan 16 21:09:47 2025 +0000

    Set elytra fly acceleration to zero when you get set back by the server

commit f2f1eadf8189f259b7e17cba3fddd1d45e338708
Author: MineGame159 <petulko08@gmail.com>
Date:   Wed Jan 8 23:14:46 2025 +0100

    Fix Meteor's in-game latest version checking

commit 3819e2763f6f257feada13e7a164d39d9ef42467
Author: MineGame159 <petulko08@gmail.com>
Date:   Wed Jan 8 16:20:43 2025 +0100

    Fix Discord webhook

commit e9903c4ce000056b6802246c086693386486e57d
Author: MineGame159 <petulko08@gmail.com>
Date:   Wed Jan 8 15:23:39 2025 +0100

    Oh my god

commit 85ceea81ecc9f38cdb14f07b2526b309efbc055d
Author: MineGame159 <petulko08@gmail.com>
Date:   Wed Jan 8 15:17:25 2025 +0100

    Whoops

commit b279889df3e0244b20d08f86932ebc82c4d30a2a
Author: MineGame159 <petulko08@gmail.com>
Date:   Wed Jan 8 15:12:57 2025 +0100

    New versioning scheme

commit 401d3b01f0673a14974e81f1aacba87adf18a311
Author: RacoonDog <32882447+RacoonDog@users.noreply.github.com>
Date:   Wed Jan 8 07:05:47 2025 -0500

    Rewrite build script (#5091)

commit 2a853b2b6baa5da002f53a8925124850f37d3e73
Author: Big Iron <52252627+Big-Iron-Cheems@users.noreply.github.com>
Date:   Mon Jan 6 16:16:32 2025 +0100

    1.21.4 update (#5030)

commit 66d0c6991d37273c5812b222f3c29cc01619762b
Author: MineGame159 <petulko08@gmail.com>
Date:   Mon Jan 6 14:36:25 2025 +0100

    Future version 0.6.0

commit 0adc76df4a65906f46d657931e80a58c9b80ab67
Author: MineGame159 <petulko08@gmail.com>
Date:   Mon Jan 6 14:17:06 2025 +0100

    Fix view and hurt bobbing with Tracers

commit 86944d36633f30fe02e8eefcccaadd78ce44003a
Author: MineGame159 <petulko08@gmail.com>
Date:   Sun Jan 5 17:52:12 2025 +0100

    Oops

commit 43a72d60a20fd2bf7d7ef905601ec35e8919dc57
Author: Toshimichi0915 <main@toshimichi.net>
Date:   Mon Jan 6 00:07:32 2025 +0900

    Fix auto clicker not working when a screen is open (#5066)

commit f33a21b174f812f04852ff3328187233a00f9316
Author: MineGame159 <petulko08@gmail.com>
Date:   Sun Jan 5 13:06:07 2025 +0100

    Fix item rendering in Nametags and Combat HUD

commit c0a3664bedc88f4c3e9c5f0f49c7246cca5662ae
Author: DrParanoya <158059657+DrParanoya@users.noreply.github.com>
Date:   Sat Jan 4 19:42:59 2025 +0100

    Add a setting to hide the Auto Reconnect buttons (#5072)

commit 40cfef1cccbf54e853018f170088a71964210db8
Author: MachieCodes <80427814+machiecodes@users.noreply.github.com>
Date:   Thu Jan 2 19:52:03 2025 -0600

    Zoom Hide Hud Setting (#5080)

commit b67a9b42de8287a965a72af4d3d6286596b5a320
Author: MachieCodes <80427814+machiecodes@users.noreply.github.com>
Date:   Thu Jan 2 18:58:21 2025 -0600

    Show Vanilla HUD if hidden when in the Meteor HUD editor (#5077)

commit 42ab94491cd87a2e95079b7206e72a3a72c4a9cf
Author: MachieCodes <80427814+machiecodes@users.noreply.github.com>
Date:   Wed Jan 1 15:22:59 2025 -0600

    Refactor Sprint (#5078)

    Co-authored-by: Wide_Cat <widecat@duck.com>

commit 967d584a7cff795783fe6ad0bc7d127caa211be8
Author: Wide_Cat <widecat@duck.com>
Date:   Tue Dec 31 15:20:28 2024 +0000

    Fix boat fly for chest boats and rafts

commit de82095de3d434b0fd775560031436bc08d76126
Author: Wide-Cat <74723656+Wide-Cat@users.noreply.github.com>
Date:   Fri Dec 27 17:37:25 2024 +0000

    Change rendering method

commit f48158268b9626925b72d105c12156b8b229d7b9
Author: shocking_person <146020122+interruptedexecution@users.noreply.github.com>
Date:   Wed Dec 25 02:09:22 2024 -0500

    Update BetterChat.java to fix player heads in the chat

    Line 463 is a bugged, redundant copy of line 462 which causes player head images to appear distorted.

commit 0a17672051918aec329d19f77eadbd5bc5468b20
Author: Wide_Cat <widecat@duck.com>
Date:   Fri Dec 27 14:56:16 2024 +0000

    Use a mixin instead of ASM for GetFovEvent

    fix compatibility with liquidbounce

commit fbdc927f118e636396a67e62fd193f1948239b79
Author: Wide_Cat <widecat@duck.com>
Date:   Mon Dec 23 21:04:51 2024 +0000

    Fix meteor rotations being rendered on other players in third person

commit 4db6cbb70a9dba4b119462244c17de00f883e8a6
Author: Wide_Cat <widecat@duck.com>
Date:   Sun Dec 22 16:43:28 2024 +0000

    Fix elytra boost, update time changer

commit 591a9e15e34abe2bb730353316e734efb6a5310a
Author: Wide_Cat <widecat@duck.com>
Date:   Thu Dec 19 16:12:46 2024 +0000

    Correct the lithium import

commit 83f9d3f9ea1fe76d07196f86e8708373229485dc
Author: RacoonDog <32882447+racoondog@users.noreply.github.com>
Date:   Tue Dec 10 21:18:05 2024 -0500

    simplify dontShowAgain

commit 43a98424da624401bf45bc4a8c56c43e867347c5
Author: RacoonDog <32882447+racoondog@users.noreply.github.com>
Date:   Tue Dec 10 21:10:34 2024 -0500

    allow prompt subclassing

commit a8483f82275a917122b82a8b6ef70e117ac729de
Author: Wide-Cat <74723656+Wide-Cat@users.noreply.github.com>
Date:   Sun Dec 8 20:38:26 2024 +0000

    A better fix for the anti-spam issue

commit 4146062bfc924a2d5f529eb031d60d3e5a381577
Author: Wide_Cat <widecat@duck.com>
Date:   Sun Dec 8 18:50:01 2024 +0000

    Fix issue with anti-spam

commit a30bbdd1b0d97c1cac503fe6f528bb819fb28943
Author: Banana1059 <88565974+Banana1059@users.noreply.github.com>
Date:   Sat Dec 7 14:31:37 2024 -0600

    Update WireframeEntityRenderer.java Memory Leak Fix

    Possible fixes for the 1.21.3 Memory leak caused by ESP

commit 2025a1cc2ca9cb35b32d8695d61561b30785abc2
Author: MineGame159 <petulko08@gmail.com>
Date:   Fri Dec 6 21:51:16 2024 +0100

    Fix background container rendering in Better Tooltips

commit e1e26443a3d9ba60cc1c3b02a16809892d1faf4f
Author: Wide-Cat <74723656+Wide-Cat@users.noreply.github.com>
Date:   Thu Dec 5 16:02:14 2024 +0000

    Fix better tooltip setting group [skip ci]

commit bb81c2a65ebf4c4223409e499983cd7878e0a53f
Author: Wide_Cat <widecat@duck.com>
Date:   Sun Nov 24 15:10:38 2024 +0000

    Quick and dirty fix for Wireframe ESP crashing

commit 46b7fbab9a2d480728aa9c560305f307c7bb7da7
Author: MineGame159 <petulko08@gmail.com>
Date:   Sat Nov 23 10:04:39 2024 +0100

    Fix GUI being darker in main menu

commit 2f50225e8e63ea9f03e097d2535670e26d943d19
Author: MineGame159 <petulko08@gmail.com>
Date:   Sat Nov 23 09:58:48 2024 +0100

    Fix HUD rendering

commit b70c1e03a6db6d2e1a7b395cd7438e8f3721c35a
Author: Wide_Cat <widecat@duck.com>
Date:   Sat Nov 23 00:51:03 2024 +0000

    Fix the give command not updating clientside, and force stack size restrictions

commit 2b07e4710ea2aec6711d478aad40a2d56fa243b4
Author: Wide_Cat <widecat@duck.com>
Date:   Fri Nov 22 22:18:54 2024 +0000

    Better tooltips - fix a crash and refactor some settings

commit 8341c92c1c946817b141a8355c9fc4ceed88bf88
Author: Wide_Cat <widecat@duck.com>
Date:   Tue Nov 19 20:43:02 2024 +0000

    Fix a compatibility issue with the latest lithium release

commit c55ae79fedf663b70aca2122999079ad052b3ece
Author: Big Iron <52252627+Big-Iron-Cheems@users.noreply.github.com>
Date:   Sun Nov 17 14:35:01 2024 +0100

    1.21.2/.3 update (#4970)

commit dcb0a3448dacd0b99a0ff233f75082581caa5adc
Author: MineGame159 <petulko08@gmail.com>
Date:   Sun Nov 17 14:20:29 2024 +0100

    Future version 0.5.9

commit 37c5c5c640ba9c66721e824c62e84bf1223c9cd6
Author: Wide_Cat <widecat@duck.com>
Date:   Thu Nov 7 18:49:24 2024 +0000

    please actually test the code next time :bruh:

commit 5720f8b6d25dbbba99651cd3a6402192eda23591
Author: Funtimes909 <funtimes90969@gmail.com>
Date:   Tue Oct 1 15:25:58 2024 +1300

    Add a blacklist for no mining trace

commit 60e85aa4ea40d423a143805c24abccb7bfd03b77
Author: 0xTas <admin@0xtas.dev>
Date:   Thu Nov 7 02:30:45 2024 -0800

    Fix AutoLog toggle off setting

commit d4b3fb834d63f9e4634d8d042371ac41d8b200ec
Author: RacoonDog <32882447+RacoonDog@users.noreply.github.com>
Date:   Wed Nov 6 11:38:37 2024 -0500

    Fix lag spike when enabling block esp (#5001)

commit a08abdddd6820aaa28c1a3c393eaa64aa23fc4ea
Author: Wide_Cat <widecat@duck.com>
Date:   Wed Nov 6 13:04:17 2024 +0000

    Remove legacy compatibility code for Canvas renderer

commit 0d7879a2e595a0cfad97d8f0979a1924dc261302
Author: Wide_Cat <widecat@duck.com>
Date:   Sun Nov 3 18:34:22 2024 +0000

    Update Auto Log

    - fix smart toggle
    - update only trusted disconnect message
    - some clarifications for health and smart toggle settings

    closes #4201

commit af4dc432de87b0888b86f156be5bf42c845c59ff
Author: Wide_Cat <widecat@duck.com>
Date:   Wed Oct 30 18:07:04 2024 +0000

    Update compatibility with lithium 0.14.0-beta.1

    closes #4975

commit 38b66595b2e7d3e11270dcd46ca094c48d5bf029
Author: Wide_Cat <widecat@duck.com>
Date:   Mon Oct 28 20:09:20 2024 +0000

    Assorted improvements to bow aimbot, bow spam and the trajectories modules

commit 37f9414ffb7497e6db9e1fdbb4e2dddd4661e6d6
Author: Tas <103238549+0xTas@users.noreply.github.com>
Date:   Sun Oct 27 10:08:00 2024 -0700

    Fix PotionSpoof flickering with night vision and add potion mode to Fullbright (#4985)

commit 2d96d9cdb52343fabd492ba7e60cf85111adae54
Author: 0xTas <admin@0xtas.dev>
Date:   Wed Oct 23 17:26:21 2024 -0700

    Fix duplicate code execution between fetchInfo() && login()

commit 0f226040550e7292900c1667741dd174c8e792a4
Author: 0xTas <admin@0xtas.dev>
Date:   Sat Oct 12 11:15:01 2024 -0700

    Fixed the alt manager's incidental limit of 3 Microsoft accounts.

commit c83113854b520889543a02e5aa46a0ed0f6f334c
Author: ruriyoshinova <github@ruriyoshinova.dev>
Date:   Sat Oct 26 00:41:50 2024 +0800

    feat: reuse `SETTING_MAX_VALUES` for `max`

commit 17676f43d88a324598a3b7da08f86595c18ae088
Author: ruriyoshinova <github@ruriyoshinova.dev>
Date:   Fri Oct 25 19:48:31 2024 +0800

    feat: BaritoneSettings - maxValues

commit 9e99af3202c630d7ec496953f0dd2037e8117753
Author: RacoonDog <32882447+racoondog@users.noreply.github.com>
Date:   Mon Oct 21 22:33:58 2024 -0400

    improve damage utils & autoweapon

commit 7a684a2cfb6a8a465859a4024b11f5ee16552585
Author: Wide_Cat <widecat@duck.com>
Date:   Fri Oct 25 17:36:48 2024 +0100

    Make scaling apply to waypoints as well

commit eacedeb48826a6de85405a5bfd7985e2e3bc6754
Author: chairclr <chairclr@gmail.com>
Date:   Wed Oct 23 16:13:51 2024 -0400

    Increase nametage scale when using Zoom

commit 42fb9083c306fd7ba4fdf8348e5729a7e5243782
Author: Tas <103238549+0xTas@users.noreply.github.com>
Date:   Fri Oct 18 13:34:07 2024 -0700

    Add player join/leave messages to Notifier (#4952)

    Co-authored-by: Wide_Cat <widecat@duck.com>

commit 015efc60badfc647ebe67d6007f7824334668dd1
Author: Wide_Cat <widecat@duck.com>
Date:   Fri Oct 18 13:49:10 2024 +0100

    Fix breaking changes regarding addons.

    - change Module.mc to no longer be static
    - add new backwards compatible module constructor

    Apologies if any addon devs had to deal with crashes due to this. Addons should work fine again.

commit 8c19f799b3d188c9b2efbceb26da4972ef1cc3ea
Author: Wide_Cat <widecat@duck.com>
Date:   Thu Oct 17 16:31:24 2024 +0100

    Fix packet event race conditions once and for all

    closes #4964

commit 34489c959d70b0595d985bc0abdb8153ee5c9dc3
Author: Wide_Cat <widecat@duck.com>
Date:   Thu Oct 17 12:08:15 2024 +0100

    add a toggle for searching by module aliases to the config tab

commit adec761b5bab45e0e0b37f89030f5c4ef51fcfb9
Author: RacoonDog <32882447+RacoonDog@users.noreply.github.com>
Date:   Thu Oct 10 21:26:46 2024 -0400

    modules aliases, invalid name logging, deprecate `getCategoryByHash`

commit 4d290d66a77ec16ebe234ce959e29cd9637c8b51
Author: RacoonDog <32882447+racoondog@users.noreply.github.com>
Date:   Mon Oct 14 18:17:32 2024 -0400

    fix .enchant command

commit 262e5f3a98c9ef64151f31a1b0fc9fd97e3d3083
Author: RacoonDog <32882447+racoondog@users.noreply.github.com>
Date:   Mon Oct 14 17:37:34 2024 -0400

    support 1.21

commit 25004d1a234fbee2e41c0794967b34c9af621354
Author: Wide_Cat <widecat@duck.com>
Date:   Mon Oct 14 15:29:59 2024 +0100

    Update No Render:
    - add a block entities setting
    - fix No Texture Rotations
    - disable the green nausea overlay with No Nausea enabled

    closes #705, closes #3880

commit 34a5b9dc59f7665fbf6bf3a33c25952bb003c8b2
Author: Wide_Cat <widecat@duck.com>
Date:   Sat Oct 12 19:40:51 2024 +0100

    Fix NoSlow Air Strict and packet Sneak setting you into the crouching pose for a single tick.

    Also clean up some warnings in EntityMixin

commit 4696ec18b2b91c4fe8c0928d52c7b46860e66595
Author: Wide-Cat <74723656+Wide-Cat@users.noreply.github.com>
Date:   Fri Oct 11 18:09:05 2024 +0100

    Display in the module screen which addon it came from. (#4947)

commit ac962675cb2672d134fda1d51aee8a11c024de39
Author: Wide_Cat <widecat@duck.com>
Date:   Wed Oct 9 17:15:16 2024 +0100

    Fix a few BetterTooltips bugs and crashes

    - fix crash when previewing null banners
    - fix previewing shield banners and banner pattern items
    - fix the compact shulker tooltips setting

    DataComponentTypes.BLOCK_ENTITY_DATA is the bane of my existence

commit fa5fe9b64407f4dedfa2d37b833ec60ff567f29d
Author: Tas <103238549+0xTas@users.noreply.github.com>
Date:   Tue Oct 8 18:41:02 2024 -0700

    Fix BetterTooltips crashing over items with the HIDE_TOOLTIP flag (#4913)

commit 37cb3154e0521e7d35362d3e47298cfe08ad37e4
Author: spinningtoilet <71576099+spinningtoilet0@users.noreply.github.com>
Date:   Mon Oct 7 07:26:57 2024 -0400

    Set elytra fly acceleration to zero when going into an unloaded chunk with "No Unloaded Chunks" enabled (#4906)

commit 3e5ae3a2eec757c5de9ca1a6800847680498480a
Author: RacoonDog <32882447+RacoonDog@users.noreply.github.com>
Date:   Sun Oct 6 04:48:10 2024 -0400

    fix storage esp breaking at high distances (#4932)

commit 06c5422f2fc64396059a1ac7323f9cfc53be4c97
Author: Wide_Cat <widecat@duck.com>
Date:   Wed Oct 2 18:54:44 2024 +0100

    Make SoundEventListSettingScreen use identifiers instead of subtitles

    subtitles can be too generic if you want to select a specific sound

commit cf3a90b6f27ff7c283ab3caffa7baa2f62043215
Author: Wide_Cat <widecat@duck.com>
Date:   Wed Oct 2 18:43:39 2024 +0100

    Fix SoundBlocker not blocking preexisting tickable sounds

commit bb2337f45ecdb9eade476845dff9433aa38e7abe
Author: Wide_Cat <widecat@duck.com>
Date:   Tue Sep 17 18:16:55 2024 +0100

    Add unsprint in water setting to sprint module

commit 0ee66e8a85a64a26116a8e6b3f47fa55b8e5f156
Author: Wide_Cat <widecat@duck.com>
Date:   Sun Sep 15 20:23:26 2024 +0100

    update to sodium 0.6.0-beta.2

commit b4afa0bb2c3cb0872355b7800e2afe679eba33cd
Author: Wide_Cat <widecat@duck.com>
Date:   Sat Sep 14 21:49:36 2024 +0100

    PlayerUtils.getGameMode() null change

    closes #3764

commit a920528e3f145724e52f05edebed4eac44f00c47
Author: Wide_Cat <widecat@duck.com>
Date:   Sat Sep 14 18:27:49 2024 +0100

    mark sodium versions under 0.6.0-beta as incompatible

commit fd989bd9d4c042225a207999f59dc11fa65fb897
Author: RattlesHyper <83329088+RattlesHyper@users.noreply.github.com>
Date:   Sat Sep 14 20:38:44 2024 +0600

    Fix BlockPos setting not visually updating after clicking (#4820)

commit 99d2eb1f02422c83f83abf9560272140ae431e7b
Author: Wide_Cat <widecat@duck.com>
Date:   Fri Sep 13 21:14:33 2024 +0100

    Hopefully fix a crash regarding anti-spam and other chat mods

    closes #4738, closes #4076

commit 5b1a1537127fb161e6d2886967247bc531eaece2
Author: Wide_Cat <widecat@duck.com>
Date:   Fri Sep 13 18:34:37 2024 +0100

    fix crash with particular mod

    closes #4894

commit 11d4efc103718710475851d952c2cb67f22b4b63
Author: Wide_Cat <widecat@duck.com>
Date:   Thu Sep 12 15:04:37 2024 +0100

    Fix or improve almost all the code

commit 18ab44d338c9cfc3fbacd1faa64db30c76731000
Author: Funtimes909 <funtimes90969@gmail.com>
Date:   Thu Sep 12 16:45:08 2024 +1200

    add an option to split large messages in the spam module and also add an option for uppercase letters in bypass

commit e4fc59e973307fd0d761a317f380bfb8a536f2ba
Author: Wide_Cat <widecat@duck.com>
Date:   Wed Sep 11 18:25:55 2024 +0100

    Add multitask module

    closes #3336, closes #1765

commit 4ed2ee09d7379f13a372cd42fc6aa11ad9e0300a
Author: Wide_Cat <widecat@duck.com>
Date:   Wed Sep 11 18:16:06 2024 +0100

    refactor IMinecraftClient rightClick [skip ci]

commit 4b05fbad2f84bd0d6a73da0936e9bd4e4bf45f3b
Author: Wide_Cat <widecat@duck.com>
Date:   Tue Sep 10 15:02:37 2024 +0100

    clean up the save map command

commit 0c59ec3a743ca7c5f209dec3d098e1d4788b577d
Author: Wide_Cat <widecat@duck.com>
Date:   Tue Sep 10 13:04:53 2024 +0100

    Fix crash when resetting waypoint module settings

    closes #4837

commit b0a441e8bb5de4e54a4fb98ea84398d01ff4ba98
Author: Wide_Cat <widecat@duck.com>
Date:   Mon Sep 9 14:49:35 2024 +0100

    Update the no render gui background setting

commit 3ba75dff0a158d145c7c8f3434f7691c5bc58fd8
Author: Wide_Cat <widecat@duck.com>
Date:   Fri Sep 6 21:05:17 2024 +0100

    Fix and improve the resource pack setting in ServerSpoof

commit bddc37d490a5ae41319c0ca2e852b30bd0d24abf
Author: Wide_Cat <widecat@duck.com>
Date:   Thu Sep 5 15:08:15 2024 +0100

    remove EasyMC from account manager because they shut down

commit 29d8d01ea5cfe9320dfda79f838c7446a8e9e7ab
Author: Wide_Cat <widecat@duck.com>
Date:   Thu Sep 5 13:40:43 2024 +0100

    Update reach module given changes in recent versions

commit 9c623103401def74e4b3e3033a62babd15898dde
Author: Wide_Cat <widecat@duck.com>
Date:   Tue Sep 3 12:14:56 2024 +0100

    remove baritone requirement for locating strongholds

commit ddea709c13338a804cdde7a10770a790c49c7cbd
Author: hellidox <97000871+hellidox@users.noreply.github.com>
Date:   Fri Aug 23 01:51:01 2024 -0500

    ok it doesnt crash above max

commit 70dad7cd22b3255dc1bbb267a292d895b058f70e
Author: hellidox <97000871+hellidox@users.noreply.github.com>
Date:   Thu Aug 22 23:04:32 2024 -0500

    Fix crash when you pass an invalid slot number

    java.lang.ArrayIndexOutOfBoundsException: Index -4 out of bounds for length 36
    	at java.base/java.util.Arrays$ArrayList.get(Unknown Source)

commit c67f2b9206c647a1f01e91216160e3751b411c6b
Author: MuffinTime <50742161+RealMuffinTime@users.noreply.github.com>
Date:   Thu Aug 29 19:44:38 2024 +0200

    Improvements to Nametags module (#4869)

    - add TNT minecarts
    - ignore empty items
    - support non-living entities

commit 902308faca05f0a8e7e8750cf5698cef549e7f23
Author: MineGame159 <petulko08@gmail.com>
Date:   Sun Aug 25 10:27:30 2024 +0200

    Fix Sodium compat outside of development environment

commit 8f83d5d0320b8e10a1d0e860eec79b1bad1e35ff
Author: MineGame159 <petulko08@gmail.com>
Date:   Fri Aug 23 12:59:32 2024 +0200

    Update to Sodium 0.6.0-beta.1 and fix XRay with Fabric API

commit caa885f20de0417761e8a46ca70164c79b979ef1
Author: RacoonDog <32882447+RacoonDog@users.noreply.github.com>
Date:   Wed Aug 21 22:45:23 2024 -0400

    add tridents to killaura weapons

commit 4bef53181678fd593b07c203c9ab2b919b453279
Author: Big Iron <52252627+Big-Iron-Cheems@users.noreply.github.com>
Date:   Sat Aug 17 14:33:41 2024 +0200

    Fix Indium mixin signature (#4835)

commit 202b14034f7a236c1e57985dde7ff08f0bff7b9b
Author: RacoonDog <32882447+RacoonDog@users.noreply.github.com>
Date:   Fri Aug 16 17:52:11 2024 -0400

    Add swap, drop and hotbar keys to .input command

commit a20389b6ad99b5a4b8f6c7ccf73ad79fa6d1ac8d
Author: Wide-Cat <widecat@duck.com>
Date:   Sat Aug 10 12:51:54 2024 +0100

    remove unused settings

commit d5763daf618e4fbbf2983b1365b34b9b5f371ef6
Author: Big-Iron-Cheems <52252627+Big-Iron-Cheems@users.noreply.github.com>
Date:   Thu Aug 8 19:49:41 2024 +0200

    1.21.1 update

    - also fix accidental regression

commit 28350de6d72b5b962ef6d5c4edd0f0f914822ee4
Author: RedCarlos26 <58893097+RedCarlos26@users.noreply.github.com>
Date:   Thu Aug 8 21:27:33 2024 -0400

    Distance check for totem pops

commit c094f4691d7acad1caf606f704bfab2689638b2a
Author: RacoonDog <32882447+RacoonDog@users.noreply.github.com>
Date:   Wed Aug 7 03:00:34 2024 -0400

    Patch owolib/gadget compat

commit 31e879edca8c9c8db0ffbe4470cc11e7e3b764b2
Author: Wide-Cat <widecat@duck.com>
Date:   Tue Aug 6 17:16:36 2024 +0100

    Prevent EntityTypeListSetting suggesting and accepting filtered values in commands

commit 7f74c25e0d7ed6c4b9b8fa994b2098bed9c6a4b5
Author: Wide-Cat <widecat@duck.com>
Date:   Tue Aug 6 16:47:48 2024 +0100

    Hopefully fix instant rebreak kicking you

commit e32839a9c504663e4c62f80e90f250d7746f4d34
Author: Wide-Cat <widecat@duck.com>
Date:   Sun Aug 4 18:25:45 2024 +0100

    Fix text box and int/double/blockpos setting issues

    closes #4807

commit aefbefbdf27913f41d4ac79e8b630e09c0012fef
Author: Wide-Cat <74723656+Wide-Cat@users.noreply.github.com>
Date:   Sat Aug 3 15:08:38 2024 +0100

    Improvements to trajectories and the projectile simulator (#4804)

commit 31b71cc8bb8ff7f197851b394e6c4de8dee1340b
Author: Funtimes909 <68979259+Funtimes909@users.noreply.github.com>
Date:   Fri Aug 2 18:18:24 2024 +0000

    Nuker refactor (#4787)

commit 6b9c11ee530fb40b650eef54dca861eeab20422e
Author: ccetl <zcvgih@gmail.com>
Date:   Thu Aug 1 00:18:16 2024 +0200

    refactor: rename 'WindowResizedEvent' to 'ResolutionChangedEvent'

commit 23c87ce6e977ba44aee81473a39322b04f4d42e2
Author: Wide-Cat <widecat@duck.com>
Date:   Fri Aug 2 14:38:12 2024 +0100

    Fix no mining trace crashing.

    closes #4788, closes #4797

commit 6c714bf62ff9e7b3121213e5a5c3b0bf38e42957
Author: Wide-Cat <widecat@duck.com>
Date:   Wed Jul 31 15:05:12 2024 +0100

    sprint module: fix jumping in place, add unsprint on hit setting

commit 271a0e5da2e6bc7e3da7798df3724b79d0ece4ec
Author: Anand Surendra Bhasme <96731982+AnandBhasme@users.noreply.github.com>
Date:   Tue Jul 23 15:12:03 2024 +0530

    Add entities to AutoLog (#4766)

commit 4dc99b3ca91f19696efeeb86494e6b8f269d78a9
Author: MineGame159 <petulko08@gmail.com>
Date:   Sun Jul 21 16:37:49 2024 +0200

    Build against 1.21 version of Baritone

commit f99666f6f91d2f2a51f7cd86483747468c98c0c0
Author: Anand Surendra Bhasme <96731982+AnandBhasme@users.noreply.github.com>
Date:   Sun Jul 21 18:56:53 2024 +0530

    NoFall consistently picks up Powder Snow after fall (#4761)

commit fdf8e1cb151f4f98677befb1c82d665168093a26
Author: Anand Surendra Bhasme <96731982+Hyped1XGeek@users.noreply.github.com>
Date:   Sat Jul 20 01:57:11 2024 +0530

    Fix auto dimension in NoFall overriding every item instead of just the bucket and removed the setting, making it always enabled (#4759)

commit c7d2f7f2f1d0b0b259617f486fff9a01134d10ed
Author: MineGame159 <petulko08@gmail.com>
Date:   Fri Jul 19 22:11:02 2024 +0200

    AutoLog will now disable AutoReconnect after a disconnect

commit 30a1b68f7eef5e18c1d88394ebd6a7ca8c4b64a7
Author: MineGame159 <petulko08@gmail.com>
Date:   Fri Jul 19 10:46:09 2024 +0200

    Add a per-entity cooldown to AutoNametag

commit ab5f7ac151ca83879ea0a112fdb5e7bd119f5dd4
Author: MineGame159 <petulko08@gmail.com>
Date:   Fri Jul 19 10:19:51 2024 +0200

    Fix Axiom compatibility

commit 21e034d007a9ae06806a2097f5f89e54c8037a3a
Author: MineGame159 <petulko08@gmail.com>
Date:   Wed Jul 17 20:03:56 2024 +0200

    Fix binding keys

commit af60c8e83e67b788eb4b99ead08d3262bf3529e7
Author: MineGame159 <petulko08@gmail.com>
Date:   Tue Jul 16 14:22:01 2024 +0200

    Track waypoints using UUIDs, fix multiple waypoints with the same name, compatible with old waypoints

commit 3f45b4eecd4376836d9e90b057f4c8148cd5713e
Author: MineGame159 <petulko08@gmail.com>
Date:   Tue Jul 16 11:36:18 2024 +0200

    Fix README lines of code badge [no ci]

commit babc0c409c2c08cd69ab4398e6e5343b6222a1cc
Author: Jim Krok <jimkrok@gmail.com>
Date:   Mon Jul 8 20:12:05 2024 -0400

    fix(AutoWalk): Calculate x & z on first tick

    Calculate x & z on first tick() in the BaritonePathManager GoalDirection
    class, to fix AutoWalk smart mode so baritone walks in the direction the
    player is facing. This fixes an issue where smart mode always starts
    walking towards 0,0.

commit 17ec839b71561a3a15990fe6054e54a8170d3146
Author: RacoonDog <32882447+RacoonDog@users.noreply.github.com>
Date:   Sat Jul 13 14:47:00 2024 -0400

    fix nuker render cube size

commit 8f10a0f0df45816fb71eefe6a59077dbde263b9a
Author: RacoonDog <32882447+RacoonDog@users.noreply.github.com>
Date:   Tue Jul 16 03:31:47 2024 -0400

    Add exception handling to `Http` (#4749)

commit d4e047db2ccc638644e20b886e5b9409831aeff2
Author: RacoonDog <32882447+RacoonDog@users.noreply.github.com>
Date:   Thu Jul 11 10:07:05 2024 -0400

    use builtin io stream methods

commit 2374b609bc4132f759a53fe20b70a3d37f74c75f
Author: Wide-Cat <widecat@duck.com>
Date:   Sat Jul 6 22:24:51 2024 +0100

    fix issues with better tooltips when searching in the creative menu

    closes #4692

commit e3df815c44107f1aa6b74adaae879a3ec6b6bb7e
Author: Wide-Cat <widecat@duck.com>
Date:   Thu Jul 4 19:34:28 2024 +0100

    refactor and fix some issues with sprint

commit 65a84e1e99d9a67433e55e55bfeff211da2be01e
Author: Wide-Cat <widecat@duck.com>
Date:   Thu Jul 4 18:32:56 2024 +0100

    Fix gui move stopping you for a tick when opening a gui

commit 7e65731ab263e09e25bec52f84f654081442d56c
Author: Lubyanoy Ivan <pythonblack5000@gmail.com>
Date:   Thu Jul 4 00:20:37 2024 +0300

    Make .peek work for containers in item frames

commit f33e87bf752715b768b536b08d23ff0f3efc9332
Author: Chen Meng <78586843+slmpc@users.noreply.github.com>
Date:   Thu Jul 4 04:54:52 2024 +0800

    Added pause in creative mode option for middle click open (#4717)

commit f82d7dc7fce585585fb4fb63394532befd04e129
Author: Adrian <admin@nekosarekawaii.de>
Date:   Wed Jul 3 22:27:07 2024 +0200

    Fixed game crash caused by ChatInputSuggestor

    Use length instead of 1 to prevent a crash that happens when you use the left arrow key in the chat and the command prefix is more than one character long.

commit c51867e02768d60f172893d49272687e43e6b35b
Author: Wide-Cat <widecat@duck.com>
Date:   Mon Jul 1 20:16:28 2024 +0100

    Ensure toggleOnBindRelease doesn't enable modules when releasing the bind

    closes #4710, closes #4289, closes #4174, closes #2782

commit 946a4ba986cda7e721ad8e8376f960865904b27a
Author: Wide-Cat <widecat@duck.com>
Date:   Mon Jul 1 13:18:55 2024 +0100

    fix better tooltips bees setting

    closes #4708

commit 85157375d2e368cdfa78358b0a909b51ae7c2d1d
Author: squidoodly <levimax08@gmail.com>
Date:   Sun Jun 30 17:27:22 2024 +0100

    Added mace to kill aura

commit cff4cf578c71691fc17bf4e50619975f0200f1fd
Author: MineGame159 <petulko08@gmail.com>
Date:   Thu Jun 27 22:41:59 2024 +0200

    Fix Vanilla Xray

commit 120dac5a48679ce42edb11c31cf8edda50df8731
Author: Wide-Cat <widecat@duck.com>
Date:   Thu Jun 27 13:20:22 2024 +0100

    add wind charges to the trajectories module

commit bfb6e32f2df4b71702d118c854bc071400333432
Author: Wide-Cat <widecat@duck.com>
Date:   Thu Jun 27 12:47:22 2024 +0100

    Add setting to criticals to always smash attack with the mace

    closes #4685

commit 71f439f7626772d78154b3ed527d4992c3dc859e
Author: Wide-Cat <widecat@duck.com>
Date:   Tue Jun 25 22:56:41 2024 +0100

    fix issues with chams

commit 19c8f7e9302b165eb93daa8a3ffd353fb129d4a9
Author: RacoonDog <32882447+RacoonDog@users.noreply.github.com>
Date:   Sun May 5 22:08:01 2024 -0400

    handle friend names case-insensitively

commit 0ce909cc676a5b73961aafb8bfddf89985353dea
Author: Big Iron <52252627+Big-Iron-Cheems@users.noreply.github.com>
Date:   Sun Jun 23 22:26:38 2024 +0200

    1.21 update (#4640)

commit 57f36cadbe2c680e3136b955fc245d8ed14b787c
Author: MineGame159 <petulko08@gmail.com>
Date:   Sun Jun 23 22:09:48 2024 +0200

    Future version 0.5.8

commit 74b80cfc555620773f2090702baa749906e2393f
Author: 19MisterX98 <41451155+19MisterX98@users.noreply.github.com>
Date:   Fri Jun 21 18:05:17 2024 +0200

    fixed keybind issue with linux/x11 #4581 (#4600)

commit 5b155609464d862888982deabb697133d83fd468
Author: Wide-Cat <widecat@duck.com>
Date:   Thu Jun 20 19:33:04 2024 +0100

    Copyright notice

commit f68e3f3b219309325b0701ef9a147157d56d652a
Author: Wide-Cat <widecat@duck.com>
Date:   Thu Jun 20 19:25:54 2024 +0100

    Add auto wasp module

commit 5debbd3423882392a64f79fa1c49edf047e92a17
Author: Wide-Cat <widecat@duck.com>
Date:   Thu Jun 20 21:52:06 2024 +0100

    Remove unused imports in commands

commit bb6428535aba894afc27e2024302dc1c3b94228b
Author: Wide-Cat <widecat@duck.com>
Date:   Thu Jun 20 21:35:28 2024 +0100

    Fix suggestions for remove argument

commit 1392c8becdc0c9b9c54a544366c976ce77d45c25
Author: RacoonDog <32882447+RacoonDog@users.noreply.github.com>
Date:   Mon May 6 23:35:21 2024 -0400

    port .nbt to 1.20.5+

commit cedabd41d49790bb6e8f8e60ab737e25ead824c6
Author: Wide-Cat <widecat@duck.com>
Date:   Wed Jun 19 23:57:35 2024 +0100

    Fix notebot reach

commit 0d5fbae7291613b550e5dda8562282a614c4390b
Author: Wide-Cat <widecat@duck.com>
Date:   Wed Jun 19 23:50:09 2024 +0100

    Entity owner no longer works with horses and projectiles

commit 73726168df3e4501dee6a93d1eaaa886c3421f17
Author: RacoonDog <32882447+RacoonDog@users.noreply.github.com>
Date:   Wed Jun 19 18:40:47 2024 -0400

    Correct better chat anti-clear behaviour

commit 309bbc8f3d31f6defe30a11d4ddedad413085d61
Author: Moxvallix Mox <moxvallix@gmail.com>
Date:   Wed Jun 19 02:25:22 2024 +0930

    Add a GUI positioning reset button to GUI tab screen

commit 0ddeab2af38d08e0403a83b692edfb0ad71aa647
Author: Wide-Cat <widecat@duck.com>
Date:   Wed Jun 19 15:53:40 2024 +0100

    Fix anti-clear in better chat.

    smh crosby. Closes #4660

commit c47000887f1d7cd2fa5518087925239fa8bd8c0a
Author: Wide-Cat <widecat@duck.com>
Date:   Tue Jun 18 13:37:16 2024 +0100

    Fix issue with better chat and clientside messages

    Co-authored-by: RacoonDog <32882447+racoondog@users.noreply.github.com>

commit 546d0b945a98c61cafd4cd9330db3936eee286d1
Author: Wide-Cat <74723656+Wide-Cat@users.noreply.github.com>
Date:   Fri Jun 14 21:21:09 2024 +0100

    Abstract shared code in prompts (#4641)

commit b3e260d341642850ba1f8cb63b2bfc9a542d69b5
Author: misterx <weinboy11@gmail.com>
Date:   Thu Jun 13 18:16:23 2024 +0200

    hostnames can have minus hyphens

commit 6704302aa7332c3be2823ec00bba28929a65b461
Author: Wide-Cat <widecat@duck.com>
Date:   Thu Jun 13 14:46:06 2024 +0100

    Rename the 'Instamine' module to 'Instant Rebreak'

    Should hopefully avoid confusion with how the module works. Closes #4631

commit e2e92dfbcb0922676a2e3673b386f33ff30c3913
Author: Wide-Cat <widecat@duck.com>
Date:   Thu Jun 13 12:48:08 2024 +0100

    Add waypoint fade distance setting

commit 1c15b021cd7b582afe01e65ad5d4e3ed19186354
Author: triskj0 <tristreflis@gmail.com>
Date:   Wed Jun 12 21:05:44 2024 +0200

    suggested change

commit 1a859f05cb40300b065a397575514e0be0025cd0
Author: triskj0 <tristreflis@gmail.com>
Date:   Wed Jun 12 19:04:07 2024 +0200

    fix chest swapping after getting an error with pitch40

commit c82f0c03b683c93173a52aaabaeee115bd5e73c1
Author: RealMuffinTime <realmuffintime@gmail.com>
Date:   Fri May 24 21:33:29 2024 +0200

    add anti chat clear option to BetterChat

commit f08df5c9898f7c94f9db8570f4bee89a4ed77fcd
Author: 19MisterX98 <41451155+19MisterX98@users.noreply.github.com>
Date:   Wed Jun 12 02:25:05 2024 +0200

    fixed hud default elements not working (#4634)

commit 94ee5c6173592479b48b8dd0e6a26a97bda3d0b6
Author: Big Iron <52252627+Big-Iron-Cheems@users.noreply.github.com>
Date:   Thu Jun 6 17:54:27 2024 +0200

    NoRender: map content (#4624)

commit 580ad3f3e517d048a90a535631e3dc6d9f3c7283
Author: tyrannus00 <dadawdawdadawdwa@gmail.com>
Date:   Wed Jun 5 18:07:31 2024 +0200

    Fixed incompatibility with Bleachhack420

commit 3e49a94fea765f246dd6ace819ad4b2a93e022f8
Author: misterx <weinboy11@gmail.com>
Date:   Mon Jun 3 16:44:48 2024 +0200

    fixed lithium border collisions #4618

commit 49f330575973cc2e146efc96ecdf4ec434fe217b
Author: Wide-Cat <widecat@duck.com>
Date:   Fri May 31 19:51:23 2024 +0100

    Add keep sprint setting to the Sprint module

    closes #4084

commit 3494a75c87262740838b2c24618395c36bd42563
Author: Wide-Cat <widecat@duck.com>
Date:   Wed May 29 17:07:42 2024 +0100

    ensure correct key

commit 66549bacaf37812d4e3db93ad294f9f48ff0ba37
Author: Wide-Cat <widecat@duck.com>
Date:   Wed May 29 16:46:38 2024 +0100

    Fix bind command

commit 339cf2b801084dec188d505c4add4e86c2e463b1
Author: FurnyGo <68079109+FurnyGo@users.noreply.github.com>
Date:   Mon May 27 17:23:56 2024 +0400

    Add titles to No Render (#4607)

commit f647d06bc89b11cda5357bfb3a3003a962aeee71
Author: Wide-Cat <widecat@duck.com>
Date:   Sun May 26 16:03:52 2024 +0100

    Made rage sprint omnidirectional

commit c320c13ca117f858b2d0e09c8e088cb76f1de1f4
Author: Wide-Cat <widecat@duck.com>
Date:   Sat May 25 20:47:58 2024 +0100

    fix warning

commit 2ee726af581d95df9838818b92cc739bc8526f5a
Author: Wide-Cat <widecat@duck.com>
Date:   Sat May 25 20:28:30 2024 +0100

    Prevent the ViaFabricPlus settings button overlapping with ours in the multiplayer menu.

commit 2b68dd40ee969eff79125e2170686e2cc881c204
Author: 19MisterX98 <41451155+19MisterX98@users.noreply.github.com>
Date:   Fri May 24 21:26:22 2024 +0200

    Fixed ServerSpoof (#4599)

commit dded574e91f851150ada983171913f93e9d1593e
Author: MineGame159 <petulko08@gmail.com>
Date:   Fri May 24 19:17:56 2024 +0200

    Fix crash on servers that send "fake players" that don't have an entry in the player list

commit 56fbe959c16705f338ad08f708037251f9172ee7
Author: Wide-Cat <widecat@duck.com>
Date:   Fri May 24 13:41:40 2024 +0100

    revert more thoroughly

commit f9b1c75913ac946376bbfbae28c2b844755e76f9
Author: tyrannus00 <dadawdawdadawdwa@gmail.com>
Date:   Thu May 23 00:39:58 2024 +0200

    Fixed Criticals not working
    Possibly also fixed other weird packet behavior after 1.20.6 update

commit fa00a6da7847e1e644d6d15d2326738d1a9135a0
Author: misterx <weinboy11@gmail.com>
Date:   Wed May 22 00:17:39 2024 +0200

    fixed fabric packets not being detected by the event system

commit 1b2144b5650c848f06cd5dfb58edad6917c001e0
Author: Wide-Cat <widecat@duck.com>
Date:   Wed May 22 12:08:19 2024 +0100

    Fix crash on startup with liquidbounce

    PSA: Gui rendering is still extremely broken but that's a separate issue. Disable custom font to mostly fix it.

commit fd1d98b84627509d4a91fe365a281638865dd85a
Author: Wide-Cat <widecat@duck.com>
Date:   Thu May 9 22:16:48 2024 +0100

    Fix better tooltips crash with banners

    closes #4578

commit 25d1135478b6946c15a0dc7fad9fea995c4cb20e
Author: RacoonDog <32882447+RacoonDog@users.noreply.github.com>
Date:   Tue May 7 20:56:36 2024 -0400

    Code improvements for commands (#4575)

commit 142cf9a60f49d89f8428da400d9187b6ddfc5383
Author: FurnyGo <68079109+FurnyGo@users.noreply.github.com>
Date:   Wed May 8 04:26:33 2024 +0400

    sendChatMessage event fix (#4489)

commit bbe89fef922796ae76ca520c4c056c77df608eef
Author: Wide-Cat <widecat@duck.com>
Date:   Wed May 8 01:16:13 2024 +0100

    small better tooltips fix

commit e8f7ef061759121681fcb775c9539b341dbf0b62
Author: Wide-Cat <widecat@duck.com>
Date:   Sat May 4 22:06:27 2024 +0100

    fix boolean logic

commit cc675ed9b2ec25977c8b0e836457f803c8cbd676
Author: Wide-Cat <widecat@duck.com>
Date:   Sat May 4 19:01:50 2024 +0100

    large fixes and improvements to better tooltips

    - fix hide flags
    - fix container previews
    - peek screens can be closed with your inventory key
    - fix book previews crashing
    - add middle click open for books

commit ea2e026786573807536ec6812585c13e1f51cbad
Author: Wide-Cat <74723656+Wide-Cat@users.noreply.github.com>
Date:   Sat May 4 00:29:01 2024 +0100

    fix server spoof resource pack message

commit f5e042f25bb62f2c2e0b036373992d51cf793f3d
Author: Big Iron <52252627+Big-Iron-Cheems@users.noreply.github.com>
Date:   Fri May 3 21:09:42 2024 +0200

    1.20.5/.6 update (#4534)

commit 828ca949c020b42f226cdebaa5f63fe71828e705
Author: MineGame159 <petulko08@gmail.com>
Date:   Fri May 3 20:46:26 2024 +0200

    Future version 0.5.7

commit eaddc5b69441d0a6cd45b2bb3f6306595ec2096a
Author: MineGame159 <petulko08@gmail.com>
Date:   Fri May 3 20:30:44 2024 +0200

    Publish the javadoc jar to maven

commit 2f4d59ad4232942001711b60b34ddd4093c69004
Author: Wide-Cat <widecat@duck.com>
Date:   Fri May 3 18:05:35 2024 +0100

    code improvements

commit 52eee5c7ac05578b0808ef4e734b769437ad59dd
Author: Hackerokuz <ivanovicsimo@protonmail.com>
Date:   Wed Mar 27 17:40:58 2024 +0100

    Added glow ESP so that ESP can esily be used with shaders.

commit a1de9e0ba9d9b10cac711044034f55dbea259e44
Author: Zgoly <46041044+Zgoly@users.noreply.github.com>
Date:   Fri May 3 21:36:02 2024 +0500

    Prompt improvements (#4548)

commit 20799ae3ab500a6ed0fc2cb18497befc45250cf5
Author: Zgoly <46041044+Zgoly@users.noreply.github.com>
Date:   Fri May 3 21:30:46 2024 +0500

    Starscript & Text preset for game mode (#4553)

commit 0f96cb1e3fb5414421b80e4869fe4f00a21b576f
Author: arlo <mcwalterarlo@gmail.com>
Date:   Fri May 3 13:10:06 2024 +0100

    Add support for keyboard modifiers in keybinds
    Fix keybind settings from closing the screen when using escape to clear the bind

commit 2517862a2b88f514c5302ccabcc50fbcc33e4fb5
Author: Wide-Cat <widecat@duck.com>
Date:   Sat Apr 27 01:43:29 2024 +0100

    resolve some issues with highway builder

commit f5422d8890d07acd7a87dfb78c34d8529b4b3782
Author: tyrannus00 <dadawdawdadawdwa@gmail.com>
Date:   Thu Apr 25 18:46:44 2024 +0200

    Fixed NoGhostBlocks playing wrong sound when placing option is enabled

commit 181fb805dbfe9f90d87683572c49512efcbd6bec
Author: xEricL <ericlatawiec123@gmail.com>
Date:   Tue Apr 23 20:29:20 2024 -0400

    add null check for Modules.get() in TextRendererMixin

commit 15036c7501b44b558ba90f2b9d13fade79a57579
Author: Erica Buckmann <erica@ericas.site>
Date:   Wed Apr 24 15:51:03 2024 +0200

    Remove unnecessary calls and checks

commit 95fb0dac0dc1c696c7d1bc154073bd73880eab4e
Author: Erica Buckmann <erica@ericas.site>
Date:   Wed Apr 24 12:41:59 2024 +0200

    Allow Trajectories to be used with off-hand item

commit 53b141f12797234904b4968808e631ffb02919f9
Author: MineGame159 <petulko08@gmail.com>
Date:   Sun Apr 21 23:19:16 2024 +0200

    Fix crash with latest Baritone builds

commit 8a7079652a6bd42cc6acc5cfe8eb917e5d1d0199
Author: Wide-Cat <widecat@duck.com>
Date:   Thu Apr 18 19:57:37 2024 +0100

    Allow selecting entity groups using the settings command (monster, animal, etc.)

commit 1e137485905ce3af36b954705464308b4e7e1f77
Author: Wide-Cat <widecat@duck.com>
Date:   Thu Apr 18 17:02:04 2024 +0100

    Update enderman look, add 'stun hostiles' setting

commit 2be5907493b454406579b4e3b325e60f40cb0f3d
Author: Wide-Cat <widecat@duck.com>
Date:   Thu Apr 18 16:16:41 2024 +0100

    Update killaura 'ignore passive' setting

commit 4c1210773ba277194fe6ee49ea3961b67a47831d
Author: Julflips <104793554+Julflips@users.noreply.github.com>
Date:   Wed Apr 17 18:13:24 2024 +0200

    Improve block placements (#4520)

commit 21ff8d612fb56a572018eff18c0e847baa0bc806
Author: abb3v <166838215+abb3v@users.noreply.github.com>
Date:   Wed Apr 17 01:36:36 2024 +1000

    Skip/change rendering opened containers in storage esp (#4519)

commit 7e5a303e60d462ed883a6b925a6130ce20f61608
Author: Wide-Cat <widecat@duck.com>
Date:   Mon Apr 15 15:48:43 2024 +0100

    forgot to select this file :weary:

commit ca50397b5817b59b09a14b74a0ae12befaa61295
Author: Wide-Cat <widecat@duck.com>
Date:   Mon Apr 15 15:45:24 2024 +0100

    fixes and improvements to trajectories

commit 022c2dabca5c973fec445786fa533683adbd92c8
Author: Wide-Cat <widecat@duck.com>
Date:   Wed Apr 10 20:42:40 2024 +0100

    forgor [skip ci]

commit d290712d42d54f927294dfa6bfec64c0e5607f90
Author: Wide-Cat <widecat@duck.com>
Date:   Wed Apr 10 20:38:26 2024 +0100

    Assorted consistency improvements

commit b69c1b5f4bf97b27f3b3faf44fc6af6160eacbb4
Author: Wide-Cat <widecat@duck.com>
Date:   Wed Apr 10 00:58:57 2024 +0100

    Add block placement to the no ghost blocks module

commit c2990cf6a62ca8413a129fdba683d9f5ddf12250
Author: Wide-Cat <widecat@duck.com>
Date:   Tue Apr 9 20:11:12 2024 +0100

    fix substring OOB crash from enchantment names

commit f4718dfc0f33b6d906e393b217c17bb55592fb85
Author: RacoonDog <32882447+RacoonDog@users.noreply.github.com>
Date:   Fri Apr 5 07:14:21 2024 -0400…
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants