mirror of
https://github.com/ViaVersion/ViaBackwards.git
synced 2024-11-22 12:16:21 +01:00
parent
8dfacde007
commit
15348f659a
@ -35,7 +35,8 @@ public class BackwardsMappings extends MappingData {
|
||||
if (diffMappings != null) {
|
||||
JsonObject diffItems = diffMappings.getAsJsonObject("items");
|
||||
if (diffItems != null) {
|
||||
backwardsItemMappings = VBMappingDataLoader.loadItemMappings(oldMappings.getAsJsonObject("items"), newMappings.getAsJsonObject("items"), diffItems, true);
|
||||
backwardsItemMappings = VBMappingDataLoader.loadItemMappings(oldMappings.getAsJsonObject("items"),
|
||||
newMappings.getAsJsonObject("items"), diffItems, shouldWarnOnMissing("items"));
|
||||
}
|
||||
|
||||
JsonObject diffSounds = diffMappings.getAsJsonObject("sounds");
|
||||
|
@ -105,6 +105,11 @@ public class BackwardsMappings extends nl.matsv.viabackwards.api.data.BackwardsM
|
||||
return mappedId;
|
||||
}
|
||||
|
||||
@Override
|
||||
protected boolean shouldWarnOnMissing(String key) {
|
||||
return super.shouldWarnOnMissing(key) && !key.equals("items");
|
||||
}
|
||||
|
||||
public Int2ObjectMap<String> getStatisticMappings() {
|
||||
return statisticMappings;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user