From a080d6361de2aed4f091c9afc8ac32943b193b2d Mon Sep 17 00:00:00 2001 From: Human Gamer <39096122+HumanGamer@users.noreply.github.com> Date: Mon, 25 Mar 2024 17:02:30 -0500 Subject: [PATCH] If a custom level has an easter egg, always show it in the menu --- game/marble/client/ui/LevelPreviewGui.gui | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/game/marble/client/ui/LevelPreviewGui.gui b/game/marble/client/ui/LevelPreviewGui.gui index 2879d277..84431d70 100644 --- a/game/marble/client/ui/LevelPreviewGui.gui +++ b/game/marble/client/ui/LevelPreviewGui.gui @@ -425,7 +425,7 @@ function levelPreviewGui::populateLevelInfo(%this) if( %mission.hasEggIndex ) { - if( hasFoundEgg( %mission.hasEggIndex ) ) + if( hasFoundEgg( %mission.hasEggIndex ) || %mission.difficultySet $= "custom" ) LP_egg.setVisible( true ); }