Add iron fence and fence gate
Cannot for the life of my figure out why the iron fence gate block won't render correctly. The blockstate isn't being called. Hopefully I can figure out in the morning
This commit is contained in:
parent
502fae9518
commit
90932acab9
23 changed files with 316 additions and 8 deletions
|
@ -1,12 +1,11 @@
|
|||
package techreborn.proxies;
|
||||
|
||||
import net.minecraftforge.client.model.ModelLoader;
|
||||
import net.minecraftforge.client.model.ModelLoaderRegistry;
|
||||
import net.minecraftforge.common.MinecraftForge;
|
||||
import net.minecraftforge.fml.client.registry.ClientRegistry;
|
||||
import reborncore.client.multiblock.MultiblockRenderEvent;
|
||||
import techreborn.client.ClientMultiBlocks;
|
||||
import techreborn.client.IconSupplier;
|
||||
import techreborn.client.RegisterItemJsons;
|
||||
import techreborn.client.StackToolTipEvent;
|
||||
import techreborn.client.VersionCheckerClient;
|
||||
import techreborn.client.hud.ChargeHud;
|
||||
|
@ -19,6 +18,7 @@ public class ClientProxy extends CommonProxy {
|
|||
@Override
|
||||
public void init() {
|
||||
super.init();
|
||||
RegisterItemJsons.registerModels();
|
||||
MinecraftForge.EVENT_BUS.register(new IconSupplier());
|
||||
MinecraftForge.EVENT_BUS.register(new ChargeHud());
|
||||
MinecraftForge.EVENT_BUS.register(new VersionCheckerClient());
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue