From fae4c7c08467f707f125523518b96c3a5fa03328 Mon Sep 17 00:00:00 2001 From: NepDisk Date: Wed, 20 Aug 2025 17:40:27 -0400 Subject: [PATCH] Hide mobj_t warning from demo archival --- src/lua_script.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lua_script.c b/src/lua_script.c index 3a0fe4ca1..a86975c78 100644 --- a/src/lua_script.c +++ b/src/lua_script.c @@ -1667,7 +1667,7 @@ static UINT8 UnArchiveValue(UINT8 **p, int TABLESINDEX, boolean compat) if (compat) { // Skip this data, we can't read a mobj here, it'd point to garbage and crash the game. - CONS_Alert(CONS_WARNING, "Couldn't read mobj_t\n"); + //CONS_Alert(CONS_WARNING, "Couldn't read mobj_t\n"); *p += sizeof(UINT32); lua_pushnil(gL); }