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

@ -35,12 +35,12 @@ import techreborn.init.TRContent;
public class ContainerDestructoPack extends RebornContainer {
private EntityPlayer player;
private Inventory inv;
private Inventory<?> inv;
public ContainerDestructoPack(EntityPlayer player) {
super(null);
this.player = player;
inv = new Inventory(1, "destructopack", 64, null);
inv = new Inventory<>(1, "destructopack", 64, null);
buildContainer();
}