Updated item ids and names for 1.7

This commit is contained in:
Wizjany
2011-07-01 00:26:40 -04:00
parent b4f646a11a
commit 5231352f6c
4 changed files with 16 additions and 1 deletions

View File

@ -312,7 +312,7 @@ public abstract class LocalWorld {
* @return
*/
public boolean isValidBlockType(int type) {
return !((type > 32 && type < 35) || type == 36 || type == 29 || type > 96);
return type >= 0 && type < 96;
}
/**