Open insa-k opened 5 years ago
Hey! We were wondering if we do not understand those methods correctly or if Character.levelDown() and Character.levelUp() are somehow mixed up?
Character.levelDown()
Character.levelUp()
public int levelDown() { return ++level; } public int levelUp() { return --level; }
Do we actually increase level when we go down and vice versa?
level
Best Insa
Hmm, yes, i think so. The deeper we go, the "higher" our experience, right?
Hey! We were wondering if we do not understand those methods correctly or if
Character.levelDown()
andCharacter.levelUp()
are somehow mixed up?Do we actually increase
level
when we go down and vice versa?Best Insa