Fixes #1938: UnsortedList not respecting meaningful entries.

This commit is contained in:
yueh 2015-10-09 12:27:00 +02:00
parent c14bc82a01
commit 614da977f9
1 changed files with 1 additions and 1 deletions

View File

@ -94,7 +94,7 @@ public final class UnsortedItemList implements IItemList<IAEItemStack>
@Override
public boolean isEmpty()
{
return this.records.isEmpty();
return !this.iterator().hasNext();
}
@Override