mirror of
https://e.coding.net/circlecloud/QuickShop.git
synced 2024-11-21 01:48:54 +00:00
fix: 修复悬浮物初始化错误
Signed-off-by: 502647092 <admin@yumc.pw>
This commit is contained in:
parent
0c9a014c13
commit
9c12bb5f91
@ -19,8 +19,6 @@ import org.bukkit.inventory.InventoryHolder;
|
||||
import org.bukkit.inventory.ItemStack;
|
||||
import org.maxgamer.QuickShop.QuickShop;
|
||||
import org.maxgamer.QuickShop.Shop.Item.DisplayItem;
|
||||
import org.maxgamer.QuickShop.Shop.Item.FakeItem_17;
|
||||
import org.maxgamer.QuickShop.Shop.Item.NormalItem;
|
||||
import org.maxgamer.QuickShop.Util.MsgUtil;
|
||||
import org.maxgamer.QuickShop.Util.Util;
|
||||
|
||||
@ -701,11 +699,7 @@ public class ContainerShop implements Shop {
|
||||
}
|
||||
final boolean trans = Util.isTransparent(getLocation().clone().add(0.5, 1.2, 0.5).getBlock().getType());
|
||||
if (trans && this.getDisplayItem() == null) {
|
||||
if (plugin.getConfigManager().isFakeItem()) {
|
||||
this.displayItem = new FakeItem_17(this, this.getItem());
|
||||
} else {
|
||||
this.displayItem = new NormalItem(this, this.getItem());
|
||||
}
|
||||
this.displayItem = DisplayItem.create(this);
|
||||
this.getDisplayItem().spawn();
|
||||
return;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user