HungerDeliriumOptions

@Serializable
data class HungerDeliriumOptions(var enabled: Boolean = true, var minFoodLevel: Int = 7) : ModuleOptions

Constructors

Link copied to clipboard
constructor(enabled: Boolean = true, minFoodLevel: Int = 7)

Properties

Link copied to clipboard
open override var enabled: Boolean

Whether the module is enabled or not. This is used to determine if the module should be loaded and its features activated.

Link copied to clipboard

The minimum food level below (less or equal to) which the player will start experiencing nausea. Minecraft max food level is 20, so this value should be between 0 and 20.