-
Whenever i try to add a modded block my server wont start caused by fallingtree.
am i coding it wrong?? anything i try just keeps telling me its got an error... {
"trees": {
"allowedLogs": [
"minecraft:mushroom_stem"
"betterend:helix_tree_log"
"betterend:helix_tree_bark"
],
"deniedLogs": [],
"allowedLeaves": [
"betterend:helix_tree_leaves"
],
"allowedNonDecayLeaves": [
"minecraft:brown_mushroom_block"
"minecraft:red_mushroom_block"
],
"deniedLeaves": [],
"breakMode": "INSTANTANEOUS",
"detectionMode": "WHOLE_TREE",
"maxScanSize": 5000,
"maxSize": 1000,
"maxSizeAction": "ABORT",
"breakOrder": "FURTHEST_FIRST",
"minimumLeavesAroundRequired": 1,
"includePersistentLeavesInRequiredCount": true,
"treeBreaking": true,
"leavesBreaking": true,
"leavesBreakingForceRadius": 0,
"allowMixedLogs": true,
"breakNetherTreeWarts": true,
"instantlyBreakWarts": true,
"breakMangroveRoots": true,
"searchAreaRadius": -1,
"allowedAdjacentBlocks": [],
"adjacentStopMode": "STOP_ALL"
},
"tools": {
"allowed": [],
"denied": [],
"preserve": true,
"ignoreTools": false,
"damageMultiplicand": 1.0,
"damageRounding": "ROUND_DOWN",
"speedMultiplicand": 0.0,
"forceToolUsage": false
},
"player": {
"allowedTags": []
},
"enchantment": {
"registerEnchant": false,
"registerSpecificEnchant": false,
"hideEnchant": false
},
"sneakMode": "SNEAK_DISABLE",
"breakInCreative": false,
"lootInCreative": true,
"notificationMode": "ACTION_BAR"
} |
Beta Was this translation helpful? Give feedback.
Answered by
Rakambda
Jun 10, 2023
Replies: 1 comment
-
Everything is written in the stack : What you wrote isn't valid JSON. You can use tools like this to verify it: https://jsonlint.com . |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
Ronko2022
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Everything is written in the stack :
MalformedJsonException: Unterminated array at line 5 column 4 path $.trees.allowedLogs[1]
.What you wrote isn't valid JSON. You can use tools like this to verify it: https://jsonlint.com .
Values in array needs a comma to separate them.