Fixed some bugs and cleanup some code.

This commit is contained in:
Matthew Miller
2018-08-13 22:18:12 +10:00
parent f96487a2d1
commit e0e7778536
22 changed files with 92 additions and 394 deletions

View File

@ -78,6 +78,11 @@ public class ItemType {
return BlockTypes.get(this.id);
}
@Override
public String toString() {
return getId();
}
@Override
public int hashCode() {
return this.id.hashCode();