From 79610d12ecbbb79f020956808fd9b110d1bb8f94 Mon Sep 17 00:00:00 2001 From: Ramen2X Date: Fri, 15 Mar 2024 15:04:25 -0400 Subject: [PATCH] invert HasRegistered check --- LEGO1/lego/legoomni/src/worlds/registrationbook.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/LEGO1/lego/legoomni/src/worlds/registrationbook.cpp b/LEGO1/lego/legoomni/src/worlds/registrationbook.cpp index 3f9332dc..a15c28a6 100644 --- a/LEGO1/lego/legoomni/src/worlds/registrationbook.cpp +++ b/LEGO1/lego/legoomni/src/worlds/registrationbook.cpp @@ -166,7 +166,7 @@ void RegistrationBook::ReadyWorld() } } - if (m_infocenterState->HasRegistered()) { + if (!m_infocenterState->HasRegistered()) { MxDSAction action; action.SetAtomId(*g_regbookScript); action.SetObjectId(RegbookScript::c_iic006in_RunAnim);