Update example mod for new mappings.

This commit is contained in:
LexManos 2016-05-18 18:06:41 -07:00
parent e3a778c2d8
commit a3ec974285

View file

@ -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());
}
}