Error in stacking
craftyfoxe opened this issue ยท 6 comments
Server Implementation
Paper
Server Version
1.18.1
Describe the bug
I just selected an area and tried to stack, but it had an error
To Reproduce
select two positions try //stack
Expected behaviour
to stack it
Screenshots / Videos
https://cdn.discordapp.com/attachments/334547947293245442/934665472354422814/2022-01-22_23.22.43.png
Error log (if applicable)
https://paste.gg/p/anonymous/f045e346795c4b9c8801c88b6f353b7b
Fawe Debugpaste
https://athion.net/ISPaster/paste/view/5a55b427245d4086ba4ae9e02786c33e
Fawe Version
Version 2.0.1-SNAPSHOT-73;016b4ba
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?
I upgraded from Build#68 and that build everything was working just fine before
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. If the issue is still present and can be reproduced, please let the team know. Thank you for your contributions.
Duplicate of #1436
The issue does make sense based on the code. The RelightProcessor is called using addProcessor(IBatchProcessor) which calls RelightProcessor#construct, which throws the named exception:
https://github.com/IntellectualSites/FastAsyncWorldEdit/blob/main/worldedit-core/src/main/java/com/sk89q/worldedit/extent/Extent.java#L861
https://github.com/IntellectualSites/FastAsyncWorldEdit/blob/main/worldedit-core/src/main/java/com/fastasyncworldedit/core/extent/processor/lighting/RelightProcessor.java#L57
This will have been caused by the use of CoreProtect, however, as CoreProtect now inserts its Extent at a different stage, the bug was effectively fixed for this specific case. Otherwise, this will be fixed by #1809