[๐]: the wrench turns the steps with the mat incorrectly
SegaBASS08 opened this issue ยท 2 comments
FIX IN THE COMMENTS
Before Continuing:
- Check you are using the latest version of the mods and its dependencies
- Always include a latest.log if you are crashing
- Remove mod that enhances Minecraft: Optifine, Sodium, others. The issue persists.
- If you are unsure which mod is the culprit.
Disable all of your mods and enable them 1-2 mods each time to isolate the culprit - Confirm that there is no existing issue with a similar description submitted in the list of issues.
Version
1.20.1-FABRIC
Supplementaries Version
2.8.17
Moonlight Lib Version
2.12.16
Issue Detail
The wrench turns the steps with the mat incorrectly
If you rotate carpet steps from the Amendments mod, only the carpet part will be rotated, and the steps will remain in the same place
To solve this, you can simply prohibit the rotation of steps covered with carpet, but I did not find a black list for a wrench
I solved the problem
Using the archive, open the mod
Go to data\supplementaries\tags\blocks\un_rotatable
And replace all the text with this:
{
"replace": false,
"values": [
{"id":"minecraft:end_portal_frame","required":false},
{"id":"minecraft:command_block","required":false},
{"id":"minecraft:repeating_command_block","required":false},
{"id":"minecraft:chain_command_block","required":false},
{"id":"minecraft:structure_block","required":false},
{"id":"minecraft:jigsaw_block","required":false},
{"id":"amendments:carpet_stairs","required":false},
{"id":"fastpaintings:painting","required":false},
{"id":"create:belt","required":false},
{"id":"create:belt_connector","required":false},
{"id":"create:track","required":false},
{"id":"blue_skies:bag_of_spoils","required":false},
{"id":"securitycraft:projector","required":false},
{"id":"chipped:tinkering_table","required":false},
{"id":"chipped:mason_table","required":false},
{"id":"chipped:carpenters_table","required":false},
{"id":"chipped:loom_table","required":false}
]
}