From 026cb861a880074cfc6800a6bed74f20b775e389 Mon Sep 17 00:00:00 2001 From: Tr0n Date: Sat, 6 Apr 2024 17:57:30 +0200 Subject: [PATCH] fix missing quote mark --- src/game/src/OXEvent.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/game/src/OXEvent.cpp b/src/game/src/OXEvent.cpp index 4153eac..a63e3ba 100644 --- a/src/game/src/OXEvent.cpp +++ b/src/game/src/OXEvent.cpp @@ -247,7 +247,7 @@ bool COXEventManager::Quiz(unsigned char level, int timelimit) int idx = Random::get(0, m_vec_quiz[level].size() - 1); - SendNoticeMap(LC_TEXT("OX-Question: ), OXEVENT_MAP_INDEX, true); + SendNoticeMap(LC_TEXT("OX-Question: "), OXEVENT_MAP_INDEX, true); SendNoticeMap(m_vec_quiz[level][idx].Quiz, OXEVENT_MAP_INDEX, true); SendNoticeMap(LC_TEXT("If it's correct, then go to O. If it's wrong, go to X."), OXEVENT_MAP_INDEX, true);