Not work with Regions Unexplored
Closed this issue ยท 4 comments
Describe the bug
Redwood Log tree have horizontal logs.
need "break_horizontal_logs = true/false"
Minecraft version
1.21.1
NeoForge version
Mod version
Configuration
{
"trees": {
"allowedLogs": [],
"deniedLogs": [],
"allowedLeaves": [],
"allowedNonDecayLeaves": [],
"deniedLeaves": [],
"breakMode": "FALL_BLOCK",
"detectionMode": "ABOVE_CUT",
"detectionModeBiomeOverride": {},
"maxScanSize": 1000,
"minSize": 2,
"maxSize": 500,
"maxLeafDistanceFromLog": 20,
"maxSizeAction": "ABORT",
"breakOrder": "FURTHEST_FIRST",
"minimumLeavesAroundRequired": 1,
"includePersistentLeavesInRequiredCount": true,
"treeBreaking": true,
"leavesBreaking": true,
"leavesBreakingForceRadius": 1,
"allowMixedLogs": true,
"breakNetherTreeWarts": true,
"breakMangroveRoots": true,
"searchAreaRadius": -1,
"allowedAdjacentBlocks": [],
"adjacentStopMode": "STOP_ALL",
"spawnItemsAtBreakPoint": true,
"trunkLootPercentage": 1.0
},
"tools": {
"allowed": [],
"denied": [],
"durabilityMode": "NORMAL",
"ignoreTools": false,
"damageMultiplicand": 1.0,
"damageRounding": "ROUND_DOWN",
"speedMultiplicand": 0.0,
"forceToolUsage": false
},
"player": {
"allowedTags": []
},
"enchantment": {
"requireEnchantment": false
},
"sneakMode": "SNEAK_DISABLE",
"breakInCreative": true,
"lootInCreative": true,
"notificationMode": "ACTION_BAR"
}Relevant log output
If logs are horizontal, i suppose no leaves are on top, so set minimumLeavesAroundRequired=0, with the risks it implies.
Also you probably don't want to set detectionMode=ABOVE_CUT if logs are horizontal as nothing will be above your cutting point.
whit this work.
{
"trees": {
"allowedLogs": [],
"deniedLogs": [],
"allowedLeaves": [],
"allowedNonDecayLeaves": [],
"deniedLeaves": [],
"breakMode": "INSTANTANEOUS",
"detectionMode": "WHOLE_TREE",
"detectionModeBiomeOverride": {},
"maxScanSize": 1000,
"minSize": 2,
"maxSize": 500,
"maxLeafDistanceFromLog": 20,
"maxSizeAction": "ABORT",
"breakOrder": "FURTHEST_FIRST",
"minimumLeavesAroundRequired": 0,
"includePersistentLeavesInRequiredCount": true,
"treeBreaking": true,
"leavesBreaking": true,
"leavesBreakingForceRadius": 5,
"allowMixedLogs": true,
"breakNetherTreeWarts": true,
"breakMangroveRoots": true,
"searchAreaRadius": -1,
"allowedAdjacentBlocks": [],
"adjacentStopMode": "STOP_ALL",
"spawnItemsAtBreakPoint": true,
"trunkLootPercentage": 1.0
},
"tools": {
"allowed": [],
"denied": [],
"durabilityMode": "NORMAL",
"ignoreTools": false,
"damageMultiplicand": 1.0,
"damageRounding": "ROUND_DOWN",
"speedMultiplicand": 0.0,
"forceToolUsage": false
},
"player": {
"allowedTags": []
},
"enchantment": {
"requireEnchantment": false
},
"sneakMode": "SNEAK_DISABLE",
"breakInCreative": true,
"lootInCreative": true,
"notificationMode": "ACTION_BAR"
}