SPIGOT-1862: Fix banners withj shields.

By: md_5 <git@md-5.net>
This commit is contained in:
CraftBukkit/Spigot
2016-03-10 16:34:33 +11:00
parent 51207b52a7
commit 45307a5099
2 changed files with 4 additions and 1 deletions

View File

@@ -96,7 +96,7 @@ public class CraftBanner extends CraftBlockState implements Banner {
@Override
public boolean update(boolean force, boolean applyPhysics) {
boolean result = super.update(force, applyPhysics);
boolean result = (isPlaced()) ? super.update(force, applyPhysics) : true;
if (result) {
banner.color = base.getDyeData();