[SOLVED] Double Gaps

# Get the hero and the peasant to the south.

# The function move your hero down along the center line.
def moveDownCenter():
    x = 40
    y = hero.pos.y - 12
    hero.moveXY(x, y)

# The function build a fence on the right of something.
def buildRightOf(something):
    # buildXY a "fence" 20 meters to something's right.
    hero.buildXY("fence", something.pos.x - 20, something.pos.y)

# The function build a fence on the left of something.
def buildLeftOf(something):
    # buildXY a "fence" 20 meters to something's left.
    hero.buildXY("fence", something.pos.x + 20, something.pos.y)

while True:
    ogre = hero.findNearestEnemy()
    coin = hero.findNearestItem()
    if ogre:
        buildLeftOf(ogre)
    if coin:
        buildRightOf(coin)
    moveDownCenter()

My hero, instead of building fences, just keeps running down the side roads whenever there is an item or enemy found. Could you point out where I am going wrong? I can’t spot any parts of this code which tells the hero to move anywhere other than down.

Thanks.

Never mind, I noticed my problem. I got the “-” and “+” in the wrong places.