Skip to content

Commit

Permalink
Removed coin penalty for aborting a level- this needs to be thought o…
Browse files Browse the repository at this point in the history
…ut more
  • Loading branch information
LMH0013 committed Sep 2, 2013
1 parent 5b54978 commit 5c472e9
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/supertux/game_session.cpp
Expand Up @@ -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"
}
}
}
Expand Down

0 comments on commit 5c472e9

Please sign in to comment.