Fix CraftBanner initialisation.

By: Lukas Hennig <lukas@wirsindwir.de>
This commit is contained in:
CraftBukkit/Spigot 2017-08-07 03:30:41 +02:00
parent 89b3d6e8a6
commit 1ca95d2193
2 changed files with 3 additions and 2 deletions

View File

@ -16,7 +16,7 @@ import org.bukkit.block.banner.PatternType;
public class CraftBanner extends CraftBlockEntityState<TileEntityBanner> implements Banner {
private DyeColor base;
private List<Pattern> patterns = new ArrayList<Pattern>();
private List<Pattern> patterns;
public CraftBanner(final Block block) {
super(block, TileEntityBanner.class);
@ -31,6 +31,7 @@ public class CraftBanner extends CraftBlockEntityState<TileEntityBanner> impleme
super.load(banner);
base = DyeColor.getByDyeData((byte) banner.color.getInvColorIndex());
patterns = new ArrayList<Pattern>();
if (banner.patterns != null) {
for (int i = 0; i < banner.patterns.size(); i++) {

View File

@ -84,7 +84,7 @@ public class CraftBlockEntityState<T extends TileEntity> extends CraftBlockState
return snapshot.save(new NBTTagCompound());
}
// copies the data of the given tile entity data to this block state
// copies the data of the given tile entity to this block state
protected void load(T tileEntity) {
if (tileEntity != null && tileEntity != snapshot) {
copyData(tileEntity, snapshot);