Starting balance

This commit is contained in:
Anuken
2022-01-24 12:21:45 -05:00
parent 757e11060f
commit 551d01bf6e
5 changed files with 5 additions and 4 deletions

View File

@@ -362,7 +362,7 @@ public abstract class SaveVersion extends SaveFileReader{
public void readWorldEntities(DataInput stream) throws IOException{
//entityMapping is null in older save versions, so use the default
Prov[] mapping = this.entityMapping == null ? EntityMapping.idMap : this.entityMapping;
var mapping = this.entityMapping == null ? EntityMapping.idMap : this.entityMapping;
int amount = stream.readInt();
for(int j = 0; j < amount; j++){