master
PF94 2020-11-22 21:07:17 -05:00
parent c4d9544f88
commit 927e4960c4
2 changed files with 7 additions and 0 deletions

BIN
level.dat

Binary file not shown.

View File

@ -408,11 +408,18 @@ public class Minecraft implements Runnable, LevelLoaderListener
if (Keyboard.getEventKey() == 8) {
this.paintTexture = 12; //white cloth
}
if (Keyboard.getEventKey() == Keyboard.KEY_PERIOD) {
if (paintTexture > 1 || paintTexture < 12) {
this.paintTexture += 1;
}
}
if (Keyboard.getEventKey() == Keyboard.KEY_COMMA) {
this.paintTexture -= 1;
if (paintTexture = 1) {
this.paintTexture = 12;
}
}
if (Keyboard.getEventKey() == 21) {
this.yMouseAxis *= -1;