
Structure Voids are replaced with a placeholder (in structure schem)
lafless opened this issue ยท 3 comments
Server Implementation
Paper
Server Version
1.21.3
Describe the bug
When saving my clipboard as an nbt structure, FAWE seems to replace structure void blocks with a random block relating to the structure, but only if the structure blocks cover an entire layer's air blocks.
To Reproduce
- Build a small hut / structure with open interior
- Select the hut and fill all air blocks with structure void
- Remove all structure void that remain inside the structure
- Copy the selection
- Save the selection as an nbt structure schematic
- Load the schematic
- Paste
Expected behaviour
The expected behavior would be for the structure void to be pasted with OR removed (based on how Minecraft's jigsaw structure saving works - I'm not 100% aware of the block placement result, but I am aware that it should either place structure voids, or nothing - definitely not a random block)
Screenshots / Videos
Structure NBT save (after replacing blocks at the door holes and below with structure void)
Loading, and pasting the saved structure schematic.
Error log (if applicable)
No response
Fawe Debugpaste
https://athion.net/ISPaster/paste/view/aefc6b24ad0b49a3b3767963f8e635cc
Fawe Version
2.12.4-SNAPSHOT-1025;63f7871
Checklist
- I have included a Fawe debugpaste.
- I am using the newest build from https://ci.athion.net/job/FastAsyncWorldEdit/ and the issue still persists.
Anything else?
Thanks for taking a look! I hope this gets fixed in a somewhat timely manner if this is indeed a bug and not a misuse on my end.
This is caused by
The code iterates over the clipboard twice: once to assemble the palette and the second time to store the blocks as references to the palette. The problem arises because structure voids are avoided being added to the palette, but the second loop still tries to store the structure void as references to the palette, causing it to be mismatched to a different block in the palette.
Depending on what the intended/desired behaviour is, the fix would be to either save structure voids to the palette, or to also skip structure voids in the second loop.
This is caused by
Line 207 in d73ff19
if (block.getBlockType() == BlockTypes.STRUCTURE_VOID || ordinals.containsKey(block.getOrdinalChar())) {The code iterates over the clipboard twice: once to assemble the palette and the second time to store the blocks as references to the palette. The problem arises because structure voids are avoided being added to the palette, but the second loop still tries to store the structure void as references to the palette, causing it to be mismatched to a different block in the palette.
Depending on what the intended/desired behaviour is, the fix would be to either save structure voids to the palette, or to also skip structure voids in the second loop.
Yeah, seems like i missed
- thank you