From: LMH Date: Mon, 2 Sep 2013 06:15:01 +0000 (-1000) Subject: Removed coin penalty for aborting a level- this needs to be thought out more X-Git-Url: https://git.verplant.org/?a=commitdiff_plain;h=5c472e98961efbbc625b52f3d12dae3fb8ab6959;p=supertux.git Removed coin penalty for aborting a level- this needs to be thought out more --- diff --git a/src/supertux/game_session.cpp b/src/supertux/game_session.cpp index f843c5d53..f14138ce2 100644 --- a/src/supertux/game_session.cpp +++ b/src/supertux/game_session.cpp @@ -398,10 +398,8 @@ GameSession::process_menu() case MNID_ABORTLEVEL: MenuManager::set_current(0); g_screen_manager->exit_screen(); - //Coin penalty for aborting a level - if (player_status->coins >= 25) - player_status->coins -= std::max(player_status->coins/10, 25); - break; + // TODO: revert coins and powerups to previous + // values so as to discourage powerup "farming" } } }