Fixed up dev console

Added fun new client sided commands
This commit is contained in:
Woah 2021-03-24 02:15:00 -04:00
parent 35cf0a6705
commit fcc1eb3e92
99 changed files with 3947 additions and 3804 deletions

View file

@ -135,7 +135,7 @@ public class DataBuffer extends Linkable {
return this.buffer[this.index++] - 128 & 0xff;
}
final void writeByte(int value) {
public final void writeByte(int value) {
this.buffer[this.index++] = (byte) value;
}