blob: 9febcd439d3b432eaec14f6a9fe3d743676e1d4a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
// Default config for all crafting interfaces, vanilla and modded.
{ "default" : {
// Disables the crafting timer if true.
"disableTimer" : false,
// This is only used if the crafting timer is enabled.
// This is how many crafts are ran when the crafting timer wraps.
"craftCount" : 1,
// This is how many of any item can be crafted at once.
// This is also used by merchants.
"maxSpinCount" : 9999
} }
|