Update Minecraft.java

master
PF94 2020-11-22 21:13:29 -05:00
parent 5be42c9d88
commit 024d2b06d7
1 changed files with 2 additions and 2 deletions

View File

@ -410,14 +410,14 @@ public class Minecraft implements Runnable, LevelLoaderListener
}
if (Keyboard.getEventKey() == Keyboard.KEY_PERIOD) {
if (this.paintTexture != 12) {
if (this.paintTexture != 13) {
this.paintTexture += 1;
}
this.paintTexture = 1;
}
if (Keyboard.getEventKey() == Keyboard.KEY_COMMA) {
if (this.paintTexture != 1) {
if (this.paintTexture != 0) {
this.paintTexture -= 1;
}
this.paintTexture = 12;