Fixed "Air" tooltip displaying in the interface terminal. More missed null checks.

This commit is contained in:
Gunther De Wachter
2017-06-27 18:00:55 +02:00
parent 66a797dd7c
commit b819fe4adb
2 changed files with 3 additions and 3 deletions
@@ -79,7 +79,7 @@ public class SlotDisconnected extends AppEngSlot
@Override
public boolean getHasStack()
{
return this.getStack() != null;
return !this.getStack().isEmpty();
}
@Override