Help for giant shield

I can’t seem to complete this level because the error is the parentheses must match. Thanks

while True:
    
    for index, friend in enumerate(hero.findFriends()):
        if friend.type == 'paladin':
            CommandPaladin(friend)
    def CommandPaladin(paladin): 
        hero.command(paladin, "move", {x: 81, {y: 45)

make this

this
hero.command(paladin, "move", {'x': 81, 'y': 45})

1 Like

This topic was automatically closed 12 hours after the last reply. New replies are no longer allowed.