aboutsummaryrefslogtreecommitdiff
path: root/src/main/java
diff options
context:
space:
mode:
authorTechnus <daniel112092@gmail.com>2017-03-09 14:03:08 +0100
committerTechnus <daniel112092@gmail.com>2017-03-09 14:03:08 +0100
commitc652bb9bfb656082549ba0a9ff7b19b411cb449b (patch)
tree91b11cf31dc9a0ff7742b5e9543379df11e7ee65 /src/main/java
parenta05ff7acacb5479eca81b4112e7e73cb546d2e2b (diff)
downloadGT5-Unofficial-c652bb9bfb656082549ba0a9ff7b19b411cb449b.tar.gz
GT5-Unofficial-c652bb9bfb656082549ba0a9ff7b19b411cb449b.tar.bz2
GT5-Unofficial-c652bb9bfb656082549ba0a9ff7b19b411cb449b.zip
Fix quantum glass render
Diffstat (limited to 'src/main/java')
-rw-r--r--src/main/java/com/github/technus/tectech/TecTech.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/com/github/technus/tectech/TecTech.java b/src/main/java/com/github/technus/tectech/TecTech.java
index 22e1e440c0..090b55604d 100644
--- a/src/main/java/com/github/technus/tectech/TecTech.java
+++ b/src/main/java/com/github/technus/tectech/TecTech.java
@@ -3,7 +3,6 @@ package com.github.technus.tectech;
import com.github.technus.tectech.auxiliary.Reference;
import com.github.technus.tectech.auxiliary.TecTechConfig;
import com.github.technus.tectech.blocks.QuantumGlass;
-import com.github.technus.tectech.blocks.QuantumGlassRender;
import com.github.technus.tectech.proxy.CommonProxy;
import cpw.mods.fml.common.Mod;
import cpw.mods.fml.common.Mod.EventHandler;
@@ -62,6 +61,7 @@ public class TecTech {
@EventHandler
public void load(FMLInitializationEvent event) {
GameRegistry.registerBlock(QuantumGlass.INSTANCE,QuantumGlass.INSTANCE.getUnlocalizedName());
+ proxy.registerRenderInfo();
}
@EventHandler