Cleanup of model registration

This commit is contained in:
drcrazy 2018-10-04 12:38:34 +03:00
parent ec0724b15f
commit 4612ab334c
22 changed files with 35 additions and 86 deletions

View file

@ -47,7 +47,7 @@ public abstract class TileGenericMachine extends TilePowerAcceptor
public int maxEnergy;
public Block toolDrop;
public int energySlot;
public Inventory inventory;
public Inventory<?> inventory;
public RecipeCrafter crafter;
/**
@ -115,7 +115,7 @@ public abstract class TileGenericMachine extends TilePowerAcceptor
// ItemHandlerProvider
@Override
public Inventory getInventory() {
public Inventory<?> getInventory() {
return inventory;
}