This commit is contained in:
Anuken
2021-08-09 11:41:39 -04:00
parent 42486cd784
commit c60f6d155f
7 changed files with 23 additions and 10 deletions

View File

@@ -408,7 +408,8 @@ public abstract class SaveVersion extends SaveFileReader{
for(int j = 0; j < total; j++){
String name = stream.readUTF();
map[type.ordinal()][j] = content.getByName(type, fallback.get(name, name));
//fallback only for blocks
map[type.ordinal()][j] = content.getByName(type, type == ContentType.block ? fallback.get(name, name) : name);
}
}