Moved items into content

This commit is contained in:
drcrazy 2018-09-24 14:28:58 +03:00
parent bf7f7ba871
commit 9f9595f955
40 changed files with 519 additions and 582 deletions

View file

@ -44,7 +44,7 @@ import net.minecraftforge.fluids.Fluid;
import net.minecraftforge.fluids.FluidStack;
import net.minecraftforge.fml.relauncher.Side;
import net.minecraftforge.fml.relauncher.SideOnly;
import techreborn.init.TRItems;
import techreborn.init.TRContent;
import techreborn.items.DynamicCell;
import javax.annotation.Nullable;
@ -69,8 +69,8 @@ public class ModelDynamicCell implements IModel {
private static final float SOUTH_Z_FLUID = 8.4f / 16f;
public static void init() {
ModelLoader.setCustomMeshDefinition(TRItems.CELL, stack -> MODEL_LOCATION);
ModelBakery.registerItemVariants(TRItems.CELL, MODEL_LOCATION);
ModelLoader.setCustomMeshDefinition(TRContent.CELL, stack -> MODEL_LOCATION);
ModelBakery.registerItemVariants(TRContent.CELL, MODEL_LOCATION);
ModelLoaderRegistry.registerLoader(new DynamicCellLoader());
}