Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

2 mistakes in level description fixed #41

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions towers/beginner/level_002.rb
Expand Up @@ -3,8 +3,8 @@
# -------- # --------


description "It is too dark to see anything, but you smell sludge nearby." description "It is too dark to see anything, but you smell sludge nearby."
tip "Use warrior.feel.empty? to see if there's anything in front of you, and warrior.attack! to fight it. Remember, you can only do one action (ending in !) per turn." tip "Use warrior.feel.enemy? to see if there's anything in front of you, and warrior.attack! to fight it. Remember, you can only do one action (ending in !) per turn."
clue "Add an if/else condition using warrior.feel.empty? to decide whether to warrior.attack! or warrior.walk!." clue "Add an if/else condition using warrior.feel.enemy? to decide whether to warrior.attack! or warrior.walk!."


time_bonus 20 time_bonus 20
ace_score 26 ace_score 26
Expand Down