mirror of
https://github.com/plexusorg/Plex-FAWE.git
synced 2024-12-22 17:27:38 +00:00
Only set ParserContext extent to world if null when setting world
This commit is contained in:
parent
a923c112ee
commit
e85586db80
@ -131,7 +131,11 @@ public class ParserContext {
|
||||
*/
|
||||
public void setWorld(@Nullable World world) {
|
||||
this.world = world;
|
||||
setExtent(world);
|
||||
//FAWE start - only set extent to world if null
|
||||
if (extent == null) {
|
||||
setExtent(world);
|
||||
}
|
||||
//FAWE end
|
||||
}
|
||||
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user