v0.82 fixed arena being made of wood >.<

This commit is contained in:
Garbage Mule
2011-06-01 02:55:19 +02:00
parent 7a34bd0690
commit 3cdc17c9dd
2 changed files with 5 additions and 5 deletions
BIN
View File
Binary file not shown.
+5 -5
View File
@@ -574,16 +574,16 @@ public class MAUtils
{ {
for (int j = y1; j <= y2; j++) for (int j = y1; j <= y2; j++)
{ {
ArenaManager.world.getBlockAt(i,j,z1).setTypeId(5); ArenaManager.world.getBlockAt(i,j,z1).setTypeId(24);
ArenaManager.world.getBlockAt(i,j,z2).setTypeId(5); ArenaManager.world.getBlockAt(i,j,z2).setTypeId(24);
} }
} }
for (int k = z1; k <= z2; k++) for (int k = z1; k <= z2; k++)
{ {
for (int j = y1; j <= y2; j++) for (int j = y1; j <= y2; j++)
{ {
ArenaManager.world.getBlockAt(x1,j,k).setTypeId(5); ArenaManager.world.getBlockAt(x1,j,k).setTypeId(24);
ArenaManager.world.getBlockAt(x2,j,k).setTypeId(5); ArenaManager.world.getBlockAt(x2,j,k).setTypeId(24);
} }
} }
@@ -603,7 +603,7 @@ public class MAUtils
for (int i = x1; i <= x2; i++) for (int i = x1; i <= x2; i++)
{ {
for (int k = z1; k <= z2; k++) for (int k = z1; k <= z2; k++)
ArenaManager.world.getBlockAt(i,y1,k).setTypeId(5); ArenaManager.world.getBlockAt(i,y1,k).setTypeId(24);
} }
// Make a hippie roof. // Make a hippie roof.