Ice Life (so hard?)(I am really bad at game of life, so, yeah.)

This is weird, I can’t beat ice-life.
My code is(yes, its the best I could think of)

# You can define the inner field.
# 1 is a peasant, 0 is an empty cell.
innerField = [
        [1,1,1,0,0,0,0,0,0,0],
        [0,0,1,0,0,0,0,0,0,0],
        [0,1,0,0,0,0,0,0,0,0],
        [0,0,0,0,0,0,0,0,0,0],
        [0,0,0,0,0,0,0,0,0,0],
        [1,1,1,0,0,0,0,0,1,0],
        [0,0,1,0,0,0,0,1,0,0],
        [0,1,0,0,0,0,0,1,1,1]
        ]



while True:
    hero.findNearestEnemy().initField(innerField)
    # It's to avoid infinity loop problem.
    hero.wait(1)

Methuselahs

Thanks., I used this one, rotated on 90 degrees.
http://conwaylife.com/wiki/Multum_in_parvo

I too, but without rotation.