Skip to content

Commit

Permalink
Update ForEachCommand.java
Browse files Browse the repository at this point in the history
  • Loading branch information
aufdemrand committed May 17, 2013
1 parent 051f011 commit c00f3ed
Showing 1 changed file with 3 additions and 3 deletions.
Expand Up @@ -102,9 +102,9 @@ public void execute(ScriptEntry scriptEntry) throws CommandExecutionException {

dB.echoDebug("amts = " + x_amt + " " + y_amt + " " + z_amt);

for (int x = 0; x != x_amt; x = x + x_inc) {
for (int y = 0; x != y_amt; y = y + y_inc) {
for (int z = 0; x != z_amt; z = z + z_inc) {
for (int x = 0; x != x_amt + 1; x = x + x_inc) {
for (int y = 0; x != y_amt + 1; y = y + y_inc) {
for (int z = 0; x != z_amt + 1; z = z + z_inc) {

dB.echoDebug("x,y,z = " + x + " " + y + " " + z);

Expand Down

0 comments on commit c00f3ed

Please sign in to comment.