-
-
Notifications
You must be signed in to change notification settings - Fork 225
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Copying + pasting entities works only over a distance of viewdistance + 2 chunks #1826
Comments
Might be related to PaperMC/Paper#5872 |
|
The methods in BukkitWorld for getting entities ultimately only ever get the loaded entities https://github.com/IntellectualSites/FastAsyncWorldEdit/blob/main/worldedit-bukkit/src/main/java/com/sk89q/worldedit/bukkit/BukkitWorld.java#L142-L165 which is completed before any chunks are loaded by FAWE in ForwardExtentCopy |
Why did you close this? Having a system to load chunks for operations that otherwise wouldn't is a reasonable addition imo |
You labeled this issue as upstream issue, which implies this is a WorldEdit issue. If you feel this is worth an addition, feel free to reopen and apply the enhancement label. |
The upstream label was there cos it's also an upstream issue, not necessarily meaning it can/should only be fixed there |
Can't reproduce the issue of this ticket anymore in 1.19.4 Paper-513 and FAWE-401, I tried as said, but the amount of entities stays the same after 1 minute even. Could be fixed by Paper |
Can you open an extra issue for that? It seems to be a problem regarding schematics and entity coordinates, I also came to the same result that pasting the schematic won't have the entities in the loaded and pasted selection, it is different from this issue. |
- Add new extent that does an action on chunk GET load - closes #1826
- Add new extent that does an action on chunk GET load - closes #1826
- Add new extent that does an action on chunk GET load - closes #1826
- Add new extent that does an action on chunk GET load - closes #1826
- Add new extent that does an action on chunk GET load - closes #1826
- Add new extent that does an action on chunk GET load - closes #1826
- Add new extent that does an action on chunk GET load - closes #1826
Server Implementation
Paper
Server Version
1.18.2
Describe the bug
When using
//copy -e
not all entities are copied in larger selections, while copying blocks always works correctly.Entities are copied only up to a distance of configured viewdistance + 2 chunks. After this distance is exceeded only blocks are considered. This behavior also applies to
schematics
,//paste -e
and//move -e
. However,//stack -e
works correctly.To Reproduce
//copy -e
while all chunks are still loaded (output: 1604 blocks + 802 entities copied)//copy -e
again (output: 1604 blocks + 192 entities copied). [view-distance = 12, simulation-distance= 4]Expected behaviour
All entities in the selection should be copied, regardless of whether the chunks are loaded or not.
Screenshots / Videos
No response
Error log (if applicable)
No response
Fawe Debugpaste
https://athion.net/ISPaster/paste/view/88c3858f83354ec3a5f7038c52269046
Fawe Version
FastAsyncWorldEdit version 2.3.1-SNAPSHOT-210;fd00635
Checklist
Anything else?
No response
The text was updated successfully, but these errors were encountered: