Fix small typo

This commit is contained in:
AeonLucid
2022-01-18 21:12:41 +01:00
parent 16ab2aeb48
commit 2cca797496
+1 -1
View File
@@ -541,7 +541,7 @@ public abstract class UChannel
// Set bunch flags. // Set bunch flags.
var bDormancyClose = bunch.bClose && (bunch.CloseReason == EChannelCloseReason.Dormancy); var bDormancyClose = bunch.bClose && (bunch.CloseReason == EChannelCloseReason.Dormancy);
if (OpenedLocally && ((OpenPacketId.First == UnrealConstants.IndexNone) || ((Connection.ResendAllDataState == EResendAllDataState.None) && !bDormancyClose))) if (OpenedLocally && ((OpenPacketId.First == UnrealConstants.IndexNone) || ((Connection.ResendAllDataState != EResendAllDataState.None) && !bDormancyClose)))
{ {
var bOpenBunch = true; var bOpenBunch = true;