Fixed #6930 (probably)

This commit is contained in:
Anuken
2022-06-08 10:00:32 -04:00
parent abb0078be3
commit 966a93ddfa
2 changed files with 2 additions and 1 deletions

View File

@@ -259,7 +259,7 @@ public class Unloader extends Block{
public void read(Reads read, byte revision){
super.read(read, revision);
int id = revision == 1 ? read.s() : read.b();
sortItem = id == -1 ? null : content.items().get(id);
sortItem = id == -1 ? null : content.item(id);
}
}
}