Merge pull request #1940 from yueh/fix-1938

Fixes #1938: UnsortedList not respecting meaningful entries.
This commit is contained in:
yueh 2015-10-10 18:31:21 +02:00
commit d615fa2dcd
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