public byte[] constructResponseInBytes() {
GamePacket packet = new GamePacket(responseCode);
packet.addShort16((short) month);
packet.addShort16((short) year);
packet.addInt32(duration);
packet.addInt32(current);
packet.addFloat(rate);
return packet.getBytes();
}
public void setCurrent(int current) {