diff options
author | nopo <noahogno@gmail.com> | 2022-08-28 16:06:41 +1000 |
---|---|---|
committer | Linnea Gräf <nea@nea.moe> | 2025-04-03 18:01:28 +0200 |
commit | 5b849ec208b6ad69dfdbec60832a196d99b8dea7 (patch) | |
tree | e894b29455ecdb016b0b989492e81f7c383bf915 /src/main/java/com | |
parent | 08479b3d0069b913a8adbb422af83f53685634c6 (diff) | |
download | Forge1.8.9Template-1.12.tar.gz Forge1.8.9Template-1.12.tar.bz2 Forge1.8.9Template-1.12.zip |
Added 1.12.2 support1.12
Diffstat (limited to 'src/main/java/com')
-rw-r--r-- | src/main/java/com/example/ExampleMod.java | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/main/java/com/example/ExampleMod.java b/src/main/java/com/example/ExampleMod.java index 2ce1671..fc9dd0d 100644 --- a/src/main/java/com/example/ExampleMod.java +++ b/src/main/java/com/example/ExampleMod.java @@ -9,8 +9,7 @@ import net.minecraftforge.fml.common.event.FMLInitializationEvent; public class ExampleMod { @Mod.EventHandler public void init(FMLInitializationEvent event) { - System.out.println("Dirt: " + Blocks.dirt.getUnlocalizedName()); - // Below is a demonstration of an access-transformed class access. - System.out.println("Color State: " + new GlStateManager.Color()); + System.out.println("Dirt: " + Blocks.DIRT.getTranslationKey()); + System.out.println("Color State: " + new GlStateManager.Color()); } } |