Перейти к содержимому
Mineforgian

Accelerated Decay

Speeds up the leaf decaying process

951K загрузок152 подписчиковLGPL-3.0-onlyfabricforgeneoforge

Обновлён 28 июня 2026 г. · опубликован 4 сентября 2023 г.

Accelerated Decay

Leaves go bye-bye

Accelerated Decay is an alternative fast leaf decay concept where instead of actually ticking the leaf blocks rapidly, we just remove them as soon as possible. Our mod implements this logic in the most vanilla possible way by delaying our leave checking logic to allow the game to naturally mark the leaves ready for removal.

One of the goals of Accelerated Delay was reduce the lag on clients & servers. We've achieved this by using a time based checking system and heavily reducing the particals and ticking logic on blocks.

BisectHosting

How it works

Once the last block supporting leaves has been removed, the mod will attempt to seek out any leaves marked with the #minecraft:leaves tag and remove them as long as they're ready to be decayed.

We support any tree made up with the #minecraft:logs tag.

Why use yours over others

  • Less lag is basically the only differentiating factor and a greatly simplified codebase allow for a very minimal performance impact.
  • Relatively Open License
  • No complicated configs, it's either on or it's not
  • Forge & Fabric support out of the box

Why do you require the architectury-api?

I'm lazy, stop judging me, we fire and listen on some events that it's much simpler to implement with architectury. Also, lots of mods use it now so if you're on a modpack or making a modpack, you likely already have it!

Версии

ВерсияКаналИграЗагрузчикиДатаСкачать
26.2.0.1Релиз26.2fabric28 июня 2026 г..jar (10 КБ)
26.2.0.1Релиз26.2neoforge28 июня 2026 г..jar (10 КБ)
26.1.2.4Релиз26.1.2fabric28 апреля 2026 г..jar (10 КБ)
26.1.2.4Релиз26.1.2neoforge28 апреля 2026 г..jar (10 КБ)
26.1.2.3Релиз26.1.2neoforge28 апреля 2026 г..jar (11 КБ)
26.1.2.3Релиз26.1.2fabric28 апреля 2026 г..jar (11 КБ)
26.1.2.2Релиз26.1.2neoforge28 апреля 2026 г..jar (11 КБ)
26.1.2.2Релиз26.1.2fabric28 апреля 2026 г..jar (11 КБ)
26.1.2.1Релиз26.1.2neoforge20 апреля 2026 г..jar (9 КБ)
26.1.2.1Релиз26.1.2fabric20 апреля 2026 г..jar (9 КБ)
26.1.0.1Релиз26.1fabric31 марта 2026 г..jar (9 КБ)
21.0.0Релиз1.21.1, 1.21.2, 1.21.3, 1.21.4neoforge15 июня 2024 г..jar (10 КБ)
21.0.0Релиз1.21.1, 1.21.2, 1.21.3, 1.21.4fabric15 июня 2024 г..jar (9 КБ)
86.0.0Релиз1.20.6neoforge9 мая 2024 г..jar (10 КБ)
86.0.0Релиз1.20.6fabric9 мая 2024 г..jar (9 КБ)

Показаны последние 15 из 44 версий. Все версии — на Modrinth.

Ченджлог

26.2.0.1Релиз26.2 · 28 июня 2026 г.

[26.2.0.1]

Changed

  • Ported to Minecraft 26.2
26.2.0.1Релиз26.2 · 28 июня 2026 г.

[26.2.0.1]

Changed

  • Ported to Minecraft 26.2
26.1.2.4Релиз26.1.2 · 28 апреля 2026 г.

[26.1.2.4]

Fixed

  • We no longer call native events for block breaking. I'm sure this will annoy people.
26.1.2.4Релиз26.1.2 · 28 апреля 2026 г.

[26.1.2.4]

Fixed

  • We no longer call native events for block breaking. I'm sure this will annoy people.
26.1.2.3Релиз26.1.2 · 28 апреля 2026 г.

[26.1.2.3]

Fixed

  • Hot fix to resolve an issue causing bone-mealed trees to instantly decay.

Changed (from [26.1.2.2])

  • Reworked the way decay is detected
    • We no longer look for leaves as logs are broken, instead we hook into the games block state changes and watch for a leave block updating
    • When the leave is updated, and it's now too far away from a log, it's added to a queue of blocks to break
    • When the next server tick happens, 5 items are taken from this list and broken.
    • This reduces overhead of scanning for leaves as well as making the leaf decay no longer be directly tied to the block down trees but does preserve the behaviour of not decaying user placed leaves.
  • The block decay queue is now stored in world data meaning if the game crashes softly or the user disconnects. The leaves will continued to decay when the world is reloaded.
  • Leaves are no longer broken as a "player" as the hook does not have a player in scope. This should fix more issues than it causes.
26.1.2.3Релиз26.1.2 · 28 апреля 2026 г.

[26.1.2.3]

Fixed

  • Hot fix to resolve an issue causing bone-mealed trees to instantly decay.

Changed (from [26.1.2.2])

  • Reworked the way decay is detected
    • We no longer look for leaves as logs are broken, instead we hook into the games block state changes and watch for a leave block updating
    • When the leave is updated, and it's now too far away from a log, it's added to a queue of blocks to break
    • When the next server tick happens, 5 items are taken from this list and broken.
    • This reduces overhead of scanning for leaves as well as making the leaf decay no longer be directly tied to the block down trees but does preserve the behaviour of not decaying user placed leaves.
  • The block decay queue is now stored in world data meaning if the game crashes softly or the user disconnects. The leaves will continued to decay when the world is reloaded.
  • Leaves are no longer broken as a "player" as the hook does not have a player in scope. This should fix more issues than it causes.
26.1.2.2Релиз26.1.2 · 28 апреля 2026 г.

[26.1.2.2]

Changed

  • Reworked the way decay is detected
    • We no longer look for leaves as logs are broken, instead we hook into the games block state changes and watch for a leave block updating
    • When the leave is updated, and it's now too far away from a log, it's added to a queue of blocks to break
    • When the next server tick happens, 5 items are taken from this list and broken.
    • This reduces overhead of scanning for leaves as well as making the leaf decay no longer be directly tied to the block down trees but does preserve the behaviour of not decaying user placed leaves.
  • The block decay queue is now stored in world data meaning if the game crashes softly or the user disconnects. The leaves will continued to decay when the world is reloaded.
  • Leaves are no longer broken as a "player" as the hook does not have a player in scope. This should fix more issues than it causes.
26.1.2.2Релиз26.1.2 · 28 апреля 2026 г.

[26.1.2.2]

Changed

  • Reworked the way decay is detected
    • We no longer look for leaves as logs are broken, instead we hook into the games block state changes and watch for a leave block updating
    • When the leave is updated, and it's now too far away from a log, it's added to a queue of blocks to break
    • When the next server tick happens, 5 items are taken from this list and broken.
    • This reduces overhead of scanning for leaves as well as making the leaf decay no longer be directly tied to the block down trees but does preserve the behaviour of not decaying user placed leaves.
  • The block decay queue is now stored in world data meaning if the game crashes softly or the user disconnects. The leaves will continued to decay when the world is reloaded.
  • Leaves are no longer broken as a "player" as the hook does not have a player in scope. This should fix more issues than it causes.

Полная история изменений — на Modrinth.

Комментарии

Загружаем…