Dropped default grow rate from 30 to 1.6 (vanilla 1)

This commit is contained in:
patience 2026-03-25 16:48:37 +00:00
parent 4329d43311
commit b8daa34b2d
No known key found for this signature in database

View file

@ -16,6 +16,6 @@ public abstract class GrowRateTweak extends BushBlock implements BonemealableBlo
@ModifyVariable(method="getGrowthSpeed", at=@At("STORE"), ordinal = 1)
private static float getGrowthSpeedF(float f){
return 30.0F; // Drops time to grow when watered from ~45 minutes to ~10. Perfect.
return 1.6F; // Drops time to grow when watered from ~45 minutes to ~10. Perfect.
}
}