From d729e8c8a0229915c94f01ae79a7505a67311fd8 Mon Sep 17 00:00:00 2001 From: Walter Higgins Date: Thu, 3 Jan 2013 09:30:34 +0000 Subject: [PATCH] Update example_scripts/fort.js changed battlement platform from stone slabs to wood slabs. --- example_scripts/fort.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/example_scripts/fort.js b/example_scripts/fort.js index 6aa7304..5c6ad1c 100644 --- a/example_scripts/fort.js +++ b/example_scripts/fort.js @@ -19,7 +19,7 @@ Drone.extend('fort', function(side, height) // this.chkpt('fort').box0(brick,side,height-1,side); // - // build turrets + // build battlements // this.up(height-1); for (i = 0;i <= 3;i++){ @@ -32,10 +32,10 @@ Drone.extend('fort', function(side, height) this.box(turret,1,1,side-2).fwd(side-2).turn(); } // - // build battlements + // build battlement's floor // this.move('fort'); - this.up(height-2).fwd().right().box('44:5',side-2,1,side-2); + this.up(height-2).fwd().right().box('126:0',side-2,1,side-2); var battlementWidth = 3; if (side <= 12) battlementWidth = 2;