Skip to content

Commit

Permalink
slight technicality, oops
Browse files Browse the repository at this point in the history
  • Loading branch information
RayDeeUx committed Mar 17, 2024
1 parent 42abcef commit 5735414
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit 5735414

Please sign in to comment.