GDQuest / learn-gdscript

Learn Godot's GDScript programming language from zero, right in your browser, for free.
https://gdquest.github.io/learn-gdscript/
Other
2.11k stars 162 forks source link

Issue on Lesson 14 Practice Problem 2 #1017

Open madkaudev opened 2 weeks ago

madkaudev commented 2 weeks ago

Issue description: "When our robot's level is 3 or more, we want it to take a lot less damage.

Add to the take_damage() function so the following happens:

The robot is level 3. An enemy is going to attack for 10 damage. This damage should reduce to 5."

The problem asks to reduce damage when the robot is level 3 or more, but 2 lines later it is said to be level 2 or more. The answer is to check if the level is 3 or more, so this is a text issue.

NathanLovato commented 2 weeks ago

It seems that the text says "greater than 2" and "3 or more", which have the same meaning. If the level has to be greater than two, then it's three or more.

Did you see a line that says "equal to 2 or more" / "is 2 or more" ?