diff --git a/Source/Game/Handlers/HotfixHandler.cs b/Source/Game/Handlers/HotfixHandler.cs index e57dc83d0..d4651c7bd 100644 --- a/Source/Game/Handlers/HotfixHandler.cs +++ b/Source/Game/Handlers/HotfixHandler.cs @@ -107,6 +107,9 @@ namespace Game hotfixData.Size = (uint)blobData.Length; hotfixQueryResponse.HotfixContent.WriteBytes(blobData); } + else + // Do not send Status::Valid when we don't have a hotfix blob for current locale + hotfixData.Record.HotfixStatus = storage != null ? HotfixRecord.Status.RecordRemoved : HotfixRecord.Status.Invalid; } }