fix spacing

master
PF94 2020-11-27 19:41:48 -05:00
parent 8c07b20790
commit e67feb6ecf
1 changed files with 2 additions and 2 deletions

View File

@ -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;