Open madkaudev opened 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" ?
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.