Removed unnecessary valid block checking (already in LocalWorld)

This commit is contained in:
zml2008
2011-08-16 22:29:06 -07:00
parent a313f2e93e
commit c99d64cfa0
3 changed files with 1 additions and 16 deletions

View File

@ -42,11 +42,6 @@ public class BukkitServerInterface extends ServerInterface {
public boolean isValidMobType(String type) {
return CreatureType.fromName(type) != null;
}
@Override
public boolean isValidBlockType(int type) {
return Material.getMaterial(type) != null;
}
@Override
public void reload() {