Skip to content

Instantly share code, notes, and snippets.

@Qohelethh
Last active August 29, 2015 14:17
Show Gist options
  • Save Qohelethh/beecb7f1bfa7e81c73d3 to your computer and use it in GitHub Desktop.
Save Qohelethh/beecb7f1bfa7e81c73d3 to your computer and use it in GitHub Desktop.
hungeroverhaul blacklist
{
// a list of foods that should not have their food values modified by HO
// the foods in this list will not have their values changed by HO at all (even if specified in the 'foods' section above)
"foodsBlacklist": [
{
// the name of the item in "mod:name" format
"name": "TwilightForest:item.hydraChop",
// [optional] the metadata value of the item (default: wildcard (any metadata))
"meta": 0
}
],
// a list of crop blocks that should not have their drops modified by HO
"dropsBlacklist": [
{
// the name of the block in "mod:name" format
"name":
// [optional] the metadata value of the block (default: wildcard (any metadata))
"meta":
}
],
// a list of crop blocks that should not have their right-click behavior modified by HO
"harvestBlacklist": [
{
// the name of the block in "mod:name" format
"name": "minecraft:wheat",
// [optional] the metadata value of the block (default: wildcard (any metadata))
"meta":
}
{
// the name of the block in "mod:name" format
"name": "yegamolchattels:flax_plant",
// [optional] the metadata value of the block (default: wildcard (any metadata))
"meta":
}
{
// the name of the block in "mod:name" format
"name": "Natura:barleyFood",
// [optional] the metadata value of the block (default: wildcard (any metadata))
"meta":
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment