Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Python Object-Oriented Python (retired) Hack-n-Slash The Final Push

Vidhya Sagar
Vidhya Sagar
1,568 Points

Logic bummer :(

In the game.py ,No inheritance of the Character and monster were done.But you've used them as such . Shouldn't it be class Game(Character,Monster): ?

1 Answer

Steven Parker
Steven Parker
229,732 Points

:point_right: The game class does not inherit from other classes.

But it does contain instances of the other classes. Any time the other classes are referenced, the local instance names are used, like "self.player.attack()" or "self.monster.dodge()".