Hi, so I am trying to make the close - interface packet work on a 751 and for what ever reason it wont work. Ive made the client print when its being called, I compared the 718 packet to the 751 and they look alike completely, and I made sure that the packet knows what its suppose to be closing by printing the id. So basicly im stumped heres the code:


@Override
public PsycOutBuffer encode(InterfaceBlueprint context) {
PsycOutBuffer buffer = new PsycOutBuffer();
buffer.writePacket(66);
buffer.writeLEInt(context.getWindowId() << 16 |context.getWindowLocation());
return buffer;
}