Various tweaks

This commit is contained in:
Anuken
2020-03-25 23:28:20 -04:00
parent e7ffb0214f
commit f966489298
4 changed files with 6 additions and 11 deletions

View File

@@ -62,7 +62,7 @@ public class LaunchPad extends StorageBlock{
@Override
public boolean acceptItem(Tilec source, Item item){
return item.type == ItemType.material && items.total() < itemCapacity;
return item.type == ItemType.material && super.acceptItem(source, item);
}
@Override