Sep-27-2019, 06:08 PM
class Player: def __init__(self): self.inventory = [items.RedBloodCell()] self.hp = 100 self.location_x, self.location_y = world.starting_position self.vicory = false def is_alive(self): return self.hp > 0 def print_inventory(self): for item in self.inventory: def move(self, dx, dy): self.location_x += dx self.location_y += dy print(world.tile_exists(self.location_x, self.location_y).intro_text())IndentationError: expected an indented block on Line 14