Update example mod for new mappings.

This commit is contained in:
LexManos 2016-05-18 18:06:41 -07:00
parent 5bd06388c1
commit 7f6f2f0ec1
1 changed files with 2 additions and 2 deletions

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