23 lines
901 B
Text
23 lines
901 B
Text
|
{
|
||
|
/*
|
||
|
These options affect only the client that loads the mod.
|
||
|
It is not possible to override the environment of the mod.
|
||
|
*/
|
||
|
"environment": "CLIENT",
|
||
|
// What items should render on your belt.
|
||
|
"beltTools": [],
|
||
|
// Enabled tools, by their resource name. Eg: minecraft:diamond_hoe. Putting any entry in here converts BackTools to a whitelist-only mod. Disabled Tools will be ignored.
|
||
|
"enabledTools": [],
|
||
|
// Disabled tools, by their resource name. Eg: minecraft:diamond_hoe
|
||
|
"disabledTools": [],
|
||
|
// Tool orientation, by class file and degrees. Separate with ":" . See defaults for examples.
|
||
|
"toolOrientation": [
|
||
|
"net.minecraft.item.ToolItem:0",
|
||
|
"net.minecraft.item.HoeItem:0",
|
||
|
"net.minecraft.item.FishingRodItem:0",
|
||
|
"net.minecraft.item.TridentItem:0",
|
||
|
"net.minecraft.item.RangedWeaponItem:90"
|
||
|
],
|
||
|
// Get in swimming position and your tools go "Weeee"
|
||
|
"helicopterMode": false
|
||
|
}
|