From 7f6f2f0ec19ec09d752ec10eb5be952fd5f3badc Mon Sep 17 00:00:00 2001 From: LexManos Date: Wed, 18 May 2016 18:06:41 -0700 Subject: [PATCH] Update example mod for new mappings. --- mdk/src/main/java/com/example/examplemod/ExampleMod.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mdk/src/main/java/com/example/examplemod/ExampleMod.java b/mdk/src/main/java/com/example/examplemod/ExampleMod.java index 82123bc37..f01de148e 100644 --- a/mdk/src/main/java/com/example/examplemod/ExampleMod.java +++ b/mdk/src/main/java/com/example/examplemod/ExampleMod.java @@ -14,7 +14,7 @@ public class ExampleMod @EventHandler public void init(FMLInitializationEvent event) { - // some example code - System.out.println("DIRT BLOCK >> "+Blocks.dirt.getUnlocalizedName()); + // some example code + System.out.println("DIRT BLOCK >> "+Blocks.DIRT.getUnlocalizedName()); } }