mirror of
https://github.com/TotalFreedomMC/TF-PlotSquared.git
synced 2024-12-23 08:25:08 +00:00
Fixed #2468
This commit is contained in:
parent
3473f5dc85
commit
920796d8ec
1 changed files with 1 additions and 1 deletions
|
@ -8,7 +8,7 @@ public class DelegateLocalBlockQueue extends LocalBlockQueue {
|
||||||
private final LocalBlockQueue parent;
|
private final LocalBlockQueue parent;
|
||||||
|
|
||||||
public DelegateLocalBlockQueue(LocalBlockQueue parent) {
|
public DelegateLocalBlockQueue(LocalBlockQueue parent) {
|
||||||
super(parent.getWorld());
|
super(parent == null ? null : parent.getWorld());
|
||||||
this.parent = parent;
|
this.parent = parent;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue