From 029dca9cdb2501cb2d81b16a958de9d5a900f11e Mon Sep 17 00:00:00 2001 From: zml2008 Date: Sat, 11 Feb 2012 14:07:01 -0800 Subject: [PATCH] Corrected usage message for maze.js to say width instead of height --- CHANGELOG.txt | 3 ++- craftscripts/maze.js | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 67e9d555d..bb765875f 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -11,7 +11,8 @@ - Improved formatting and performance of YAMLProcessor when no comments are present - Added bPermissions support - Update for new events system - - Fixed /scriptname.js and no-double-slash settings not working + - Fixed /scriptname.js and no-double-slash settings not working + - Corrected usage message for maze.js 5.1.1: - Fixed some compatibility issues with SpoutPlugin diff --git a/craftscripts/maze.js b/craftscripts/maze.js index 329759e18..1957f3026 100644 --- a/craftscripts/maze.js +++ b/craftscripts/maze.js @@ -20,7 +20,7 @@ importPackage(Packages.com.sk89q.worldedit); importPackage(Packages.com.sk89q.worldedit.blocks); -context.checkArgs(1, -1, " [width] [height]"); +context.checkArgs(1, -1, " [width] [length]"); var sess = context.remember();