Skip to main content

Documentation Index

Fetch the complete documentation index at: https://mintlify.com/AstralyaStudios/YeastNFeast/llms.txt

Use this file to discover all available pages before exploring further.

Yeast ‘n Feast generates a single common configuration file on first launch. This file controls server-side and client-side shared behaviour, meaning it applies consistently across both singleplayer and multiplayer environments. The client config is currently empty and reserved for future use.

Config file location

config/yeastnfeast-common.toml
This file is created automatically in your instance’s config/ folder the first time the mod loads. You can edit it with any text editor; changes take effect on the next world load or server restart.
This is a common config (type COMMON in Forge terminology), meaning it is read by both the client and the server. On a dedicated server, the file lives in the server’s config/ directory and governs all players connected to that server.

Settings

[functional_blocks]

Settings for Yeast ‘n Feast’s interactive functional blocks, such as the Tree Tap.

dripDelayTicks

Controls how many ticks must pass before the Tree Tap begins dripping Maple Syrup after being placed on a valid maple tree.
PropertyValue
Default7200 ticks (6 minutes)
Minimum20 ticks (1 second)
Maximum24000 ticks (20 minutes)
Ticks-to-time reference:
TicksReal time
201 second
12001 minute
72006 minutes (default)
1200010 minutes
2400020 minutes
20 ticks = 1 second. To convert a desired wait time in seconds to ticks, multiply by 20. For example, a 5-minute delay is 5 × 60 × 20 = 6000 ticks.

Example config file

yeastnfeast-common.toml
[functional_blocks]
	#Ticks required before the Tree Tap begins dripping (default: 7200 ticks = 6 minutes)
	#Range: 20 ~ 24000
	dripDelayTicks = 7200
To reduce the delay for faster Maple Syrup collection, lower the value:
yeastnfeast-common.toml
[functional_blocks]
	#Ticks required before the Tree Tap begins dripping (default: 7200 ticks = 6 minutes)
	#Range: 20 ~ 24000
	dripDelayTicks = 1200
This sets the drip delay to 1200 ticks (1 minute). Values outside the 20–24000 range will be clamped to the nearest bound by Forge automatically.

Build docs developers (and LLMs) love