1
0
mirror of https://e.coding.net/circlecloud/QuickShop.git synced 2024-11-22 01:58:54 +00:00

fix item check...

Signed-off-by: 502647092 <jtb1@163.com>
This commit is contained in:
502647092 2015-10-28 13:13:04 +08:00
parent b4623befa9
commit d8e8678d31

View File

@ -77,14 +77,10 @@ public class DisplayItem {
} }
final Location eLoc = e.getLocation().getBlock().getLocation(); final Location eLoc = e.getLocation().getBlock().getLocation();
if (eLoc.equals(displayLoc) || eLoc.equals(shop.getLocation())) { if (eLoc.equals(displayLoc) || eLoc.equals(shop.getLocation())) {
final ItemStack near = ((Item) e).getItemStack();
// if its the same its a dupe
if (this.shop.matches(near)) {
e.remove(); e.remove();
removed = true; removed = true;
} }
} }
}
return removed; return removed;
} }