Thunder hooves text error

If you are forgetting how to build fences to stop enemies, the Sarven Gaps level is great practice for this one.

this is part of the help text for thunder hooves and I have not reached the sarven gaps level if I am just missing the level tell me if not pls fix this glitch

Sarven Gaps is a subscriber only level… Yes, it would be good help, but if you aren’t a subscriber then you can’t use it for practice. Help text should be updated I think.

Are you having trouble with the level? Or just reporting an issue with the help text?

I am a subscriber and I do need help with the level here is my code

loop {
    enemy = this.findNearestEnemy();
    if (enemy) {
        // A yak is above you if it's y is greater than your y.
        // If the yak is above you, build a fence 10m below it.
        
        if(enemy.pos.y < this.pos.y){
            var y = enemy.pos.y + 10;
            var x = enemy.pos.x;       
            this.buildXY("fence", x, y);            
        
        }
        else if(enemy.pos.y > this.pos.y){
            y = enemy.pos.y - 10;
            x = enemy.pos.x;
            this.buildXY("fence", x, y);
        }
        else {
        
            x = this.pos.x + 10;
            y = this.pos.y;
            this.moveXY(x, y);
        
        }
    }

Hey Feinty, I sent you an email–hope that helps!