public void setProperty(int id, int value) {
properties.put(id, value);
switch (VanillaPlugin.getInstance().getEngine().getPlatform()) {
case PROXY:
case SERVER:
getPlayer().getNetwork().callProtocolEvent(new WindowPropertyEvent(this, id, value), getPlayer());
break;
case CLIENT:
// TODO: Window properties
break;
default: