Some addons expose setGrowthModifier(). If the Lilypad is modified to call setGrowthModifier() via a compatibility coremod, acceleration is possible, but not in default.

| Upgrade / Item | Effect on Botany Pot | |----------------------------------------|----------------------------------| | Botany Pot Upgrades (speed, soil) | ✅ Yes (intended) | | Water source nearby (for hydration) | ✅ Yes (if enabled in config) | | Lilypad of Fertility | ❌ No | | Growth accelerators (e.g., Watch of Flowing Time) | ✅ Sometimes — if they accelerate tile entities |

If you are playing a popular modpack like SkyFactory 4, StoneBlock 2, or ATM: Sky, here is your cheat sheet:

The question of whether the Lilypad of Fertility works with Botany Pots is one of the most common compatibility queries in modern modded Minecraft. The short answer is No, it does not.

However, the reason why it doesn't work—and the mechanics behind it—reveals a fascinating look into how different mods handle "growth." This report details the technical disconnect between area-of-effect (AOE) growth tick accelerators and block-state-based farming.


Reliquary listens to RandomTickEvent (in 1.12) or uses a WorldTickListener to manually call grow() on applicable blocks. It checks:

if (block instanceof IGrowable growable && world.isAreaLoaded(pos, 1)) 
    if (growable.canGrow(world, pos, state, world.isClient)) 
        growable.grow(world, random, pos, state);

To understand the incompatibility, we must first understand that these two objects operate on completely different "operating systems" within the game engine.

Does Lilypad Of Fertility Work With Botany Pots Exclusive (Top 50 TRUSTED)

Some addons expose setGrowthModifier(). If the Lilypad is modified to call setGrowthModifier() via a compatibility coremod, acceleration is possible, but not in default.

| Upgrade / Item | Effect on Botany Pot | |----------------------------------------|----------------------------------| | Botany Pot Upgrades (speed, soil) | ✅ Yes (intended) | | Water source nearby (for hydration) | ✅ Yes (if enabled in config) | | Lilypad of Fertility | ❌ No | | Growth accelerators (e.g., Watch of Flowing Time) | ✅ Sometimes — if they accelerate tile entities | does lilypad of fertility work with botany pots exclusive

If you are playing a popular modpack like SkyFactory 4, StoneBlock 2, or ATM: Sky, here is your cheat sheet: Some addons expose setGrowthModifier()

The question of whether the Lilypad of Fertility works with Botany Pots is one of the most common compatibility queries in modern modded Minecraft. The short answer is No, it does not. Reliquary listens to RandomTickEvent (in 1

However, the reason why it doesn't work—and the mechanics behind it—reveals a fascinating look into how different mods handle "growth." This report details the technical disconnect between area-of-effect (AOE) growth tick accelerators and block-state-based farming.


Reliquary listens to RandomTickEvent (in 1.12) or uses a WorldTickListener to manually call grow() on applicable blocks. It checks:

if (block instanceof IGrowable growable && world.isAreaLoaded(pos, 1)) 
    if (growable.canGrow(world, pos, state, world.isClient)) 
        growable.grow(world, random, pos, state);

To understand the incompatibility, we must first understand that these two objects operate on completely different "operating systems" within the game engine.