From 573541463f93f329f6b1b3ae5c8098320d286b81 Mon Sep 17 00:00:00 2001 From: Erymanthus | RayDeeUx <51521765+RayDeeUx@users.noreply.github.com> Date: Sun, 17 Mar 2024 13:20:34 -0400 Subject: [PATCH] slight technicality, oops --- src/main.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/main.cpp b/src/main.cpp index 391495f..d0332a4 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -193,7 +193,10 @@ class $modify(MyEndLevelLayer, EndLevelLayer) { // ensure that no one's up to any funny business by hardcoding the scale and contents of vanilla complete messages completeMessage->setScale(0.55f); if (getChildByIDRecursive("level-complete-text")) { completeMessage->setString("Level Verified!"); } - else { completeMessage->setString("Complete the level in normal mode\nto verify it!"); } + else { + if (theLevel->m_levelID.value() == 0) { completeMessage->setString("Complete the level in normal mode\nto verify it!"); } + else { completeMessage->setString("Well done... Now try to complete\nit without any checkpoints!"); } + } if (m_fields->isCompactEndscreen) completeMessage->setPositionX(m_fields->compactEndscreenFallbackPosition); return; }