Skip to content

Commit

Permalink
Survival mode description shows a higher line count.
Browse files Browse the repository at this point in the history
For grading purposes, the harder survival levels only expect you to
survive for 150 (or more) lines, but the game doesn't end until you hit
200 (or more) lines. The descriptions now show this 200 number, as it's
less confusing to the player.
  • Loading branch information
Poobslag committed Feb 21, 2021
1 parent 0f17dae commit 1390138
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions project/src/main/ui/menu/practice-mode-selector.gd
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,6 @@ func set_level(new_level: LevelSettings) -> void:
match get_selected_mode():
"Survival":
var target_value: int = new_level.finish_condition.value
if new_level.finish_condition.has_meta("lenient_value"):
target_value = int(new_level.finish_condition.get_meta("lenient_value"))

new_description = "Survive as the pieces get faster and faster! Can you clear %s lines?" \
% StringUtils.comma_sep(target_value)
Expand Down

0 comments on commit 1390138

Please sign in to comment.