Disable DecorateEventDebug by default.
Prevents me thinking that decoration is broken >.<
This commit is contained in:
parent
62ec59103a
commit
fdea60f89a
1 changed files with 3 additions and 1 deletions
|
@ -12,6 +12,7 @@ import net.minecraftforge.fml.common.eventhandler.SubscribeEvent;
|
||||||
public class DecorateEventDebug
|
public class DecorateEventDebug
|
||||||
{
|
{
|
||||||
|
|
||||||
|
private static final boolean ENABLED = false;
|
||||||
public static final String MODID = "decorateeventdebug";
|
public static final String MODID = "decorateeventdebug";
|
||||||
public static final String NAME = "DecorateEventDebug";
|
public static final String NAME = "DecorateEventDebug";
|
||||||
public static final String VERSION = "1.0.0";
|
public static final String VERSION = "1.0.0";
|
||||||
|
@ -19,7 +20,8 @@ public class DecorateEventDebug
|
||||||
@EventHandler
|
@EventHandler
|
||||||
public void init(FMLInitializationEvent event)
|
public void init(FMLInitializationEvent event)
|
||||||
{
|
{
|
||||||
MinecraftForge.TERRAIN_GEN_BUS.register(this);
|
if (ENABLED)
|
||||||
|
MinecraftForge.TERRAIN_GEN_BUS.register(this);
|
||||||
}
|
}
|
||||||
|
|
||||||
@SubscribeEvent
|
@SubscribeEvent
|
||||||
|
|
Loading…
Reference in a new issue