Hi!
How do I solve Passing Through? Is my code okay?`while True:
item = hero.findNearestItem()
if item:
# If item.type IS NOT EQUAL TO “gem”
if item.type != “gem”:
# Then follow your pet wolf.
hero.moveXY(pet.pos.x, pet.pos.y)
else item and item.type == “gem”:
hero.moveXY("gem.pos.x, “gem”.pos.y)
# Move to the gem's position.
https://codecombat.com/play/level/passing-through?
`