Make sure FragmentSendVerifyCompletePackets are constructed in the factory.

This commit is contained in:
Captain ALM 2022-06-14 17:41:11 +01:00
parent 569c8a43e1
commit 6587601adb
Signed by: alfred
GPG Key ID: 4E4ADD02609997B1

View File

@ -68,6 +68,7 @@ public class CALMNETPacketFactory implements IPacketFactory {
if (information.equals(FragmentRetrySendPacket.getTheProtocol())) return new FragmentRetrySendPacket(null, null);
if (information.equals(FragmentSendCompletePacket.getTheProtocol())) return new FragmentSendCompletePacket(null, null);
if (information.equals(FragmentSendStopPacket.getTheProtocol())) return new FragmentSendStopPacket(null);
if (information.equals(FragmentSendVerifyCompletePacket.getTheProtocol())) return new FragmentSendVerifyCompletePacket(null);
return null;
}