fix item check...

Signed-off-by: 502647092 <jtb1@163.com>
pull/3/HEAD
502647092 2015-10-28 13:13:04 +08:00
parent b4623befa9
commit d8e8678d31
1 changed files with 2 additions and 6 deletions

View File

@ -77,12 +77,8 @@ public class DisplayItem {
}
final Location eLoc = e.getLocation().getBlock().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();
removed = true;
}
e.remove();
removed = true;
}
}
return removed;