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