ServerInterface.clearChest() now clears using Chest.clearContents().

This commit is contained in:
sk89q 2010-11-26 09:39:23 -08:00
parent 67b46a9f27
commit efb4a7b52f

View File

@ -198,13 +198,7 @@ public class ServerInterface {
}
Chest chest = (Chest)cblock;
hl[] itemArray = chest.getArray();
// Find an existing slot to put it into
for (int i = 0; itemArray.length > i; i++) {
itemArray[i] = null;
}
chest.clearContents();
chest.update();
return true;