Added cases for other item types

This commit is contained in:
Collin Smith 2019-12-27 14:37:17 -08:00
parent a49f73f6c4
commit aba55c5ffa

View File

@ -244,6 +244,15 @@ public class ClientNetworkReceiver extends IntervalSystem {
cofs.setWClass(entityId, Engine.WEAPON_1HS); // TODO...
return entityId;
}
case ITM: {
return Engine.INVALID_ENTITY;
}
case WRP: {
return Engine.INVALID_ENTITY;
}
case MIS: {
return Engine.INVALID_ENTITY;
}
default:
return Engine.INVALID_ENTITY;
}