Comforts (Fabric/Forge/Quilt)

Comforts (Fabric/Forge/Quilt)

125M Downloads

Unclear how to format `sleepingBagDebuffs`; suggest more detailed description in the wiki?

nepphhh opened this issue ยท 2 comments

commented
#Format: [effect] [duration(secs)] [power]
sleepingBagDebuffs = [minecraft:mining_fatigue] [60] [1]

This does not properly load. Other similar variations also fail to load. Peering through the source doesn't make it any more obvious to me, a non-modder.

Perhaps the configuration format should be explained a bit more explicitly, maybe on the wiki?

commented

Sure, sorry about the vagueness. It's hard to delineate clearly when I'm biased, being the modder and all.

Here's an example that should clear up the confusion:

sleepingBagDebuffs = ["minecraft:mining_fatigue 60 1", "minecraft:weakness 30 1"]

This will add two effects to the list. The list itself is defined by the brackets. Each entry is separated by commas. Each entry needs to be wrapped by quotation marks. Each option in the entry is separate by a space.

I've also added this to the wiki for future reference.

commented

Thank you!