From 93673948095edf53be0553a7837dc8aa9fe2a1e1 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Fri, 17 Nov 2023 21:41:29 +0100 Subject: [PATCH] fix ChangeLevel when called for ending the game. --- source/core/cheats.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/core/cheats.cpp b/source/core/cheats.cpp index 90123817f..55173f296 100644 --- a/source/core/cheats.cpp +++ b/source/core/cheats.cpp @@ -254,7 +254,7 @@ void ChangeLevel(MapRecord* map, int skill, bool bossexit) Net_WriteByte(DEM_CHANGEMAP); Net_WriteByte(skill); Net_WriteByte(bossexit); - Net_WriteString(map? map->labelName.GetChars() : nullptr); + Net_WriteString(map? map->labelName.GetChars() : ""); } //---------------------------------------------------------------------------