Merge branch '6.1.x' of github.com:BuildCraft/BuildCraft into 6.1.x
This commit is contained in:
commit
0db1a4cbe3
1 changed files with 3 additions and 1 deletions
|
@ -49,7 +49,9 @@ public abstract class WorldProperty implements IWorldProperty {
|
|||
@Override
|
||||
public void clear() {
|
||||
for (DimensionProperty p : properties) {
|
||||
p.clear();
|
||||
if (p != null) {
|
||||
p.clear();
|
||||
}
|
||||
}
|
||||
|
||||
properties.clear();
|
||||
|
|
Loading…
Reference in a new issue