Cancel swap item, fix #364 (#365)

* Cancel swap item, fix #364

* Remove canceling drop item
This commit is contained in:
Mats 2016-04-20 19:31:18 +02:00 committed by Myles
parent 18f77308f5
commit b6794f5597

View File

@ -217,7 +217,7 @@ public class WorldPackets {
@Override
public void handle(PacketWrapper wrapper) throws Exception {
int status = wrapper.get(Type.UNSIGNED_BYTE, 0);
if (status == 4)
if (status == 6)
wrapper.cancel();
}
});