Added mob spawner support; added 'info' tool.

This commit is contained in:
sk89q
2010-11-26 19:33:28 -08:00
parent efb4a7b52f
commit 0ec0b42026
10 changed files with 299 additions and 7 deletions

View File

@@ -25,11 +25,16 @@ package com.sk89q.worldedit;
*/
public class DisallowedItemException extends WorldEditException {
private String type;
public DisallowedItemException(String type) {
this.type = type;
}
public DisallowedItemException(String type, String message) {
super(message);
this.type = type;
}
public String getID() {
return type;
}