diff --git a/src/com/mojang/minecraft/Minecraft.java b/src/com/mojang/minecraft/Minecraft.java index 08382c5..a5e3cf0 100644 --- a/src/com/mojang/minecraft/Minecraft.java +++ b/src/com/mojang/minecraft/Minecraft.java @@ -367,13 +367,13 @@ public class Minecraft implements Runnable, LevelLoaderListener if (Keyboard.getEventKey() == Keyboard.KEY_PERIOD) { if (this.paintTexture != 34) //prevents game from crashing if user goes above the last available block. this.paintTexture += 1; - this.paintTextureString = ("Block Selected :" + this.paintTexture); + this.paintTextureString = ("Block Selected: " + this.paintTexture); } if (Keyboard.getEventKey() == Keyboard.KEY_COMMA) { if (this.paintTexture != 1) this.paintTexture -= 1; - this.paintTextureString = ("Block Selected:" + this.paintTexture); + this.paintTextureString = ("Block Selected: " + this.paintTexture); } if (Keyboard.getEventKey() == 21) { this.yMouseAxis *= -1;