mirror of
https://github.com/Ellpeck/ActuallyAdditions.git
synced 2024-11-22 15:18:34 +01:00
Ignore Mappings for missing itemSpecial, it's removed on purpose.
This commit is contained in:
parent
a64991b75f
commit
25c52823c5
2 changed files with 4 additions and 2 deletions
|
@ -132,9 +132,11 @@ public class ActuallyAdditions{
|
||||||
public void missingMapping(FMLMissingMappingsEvent event){
|
public void missingMapping(FMLMissingMappingsEvent event){
|
||||||
for(FMLMissingMappingsEvent.MissingMapping mapping : event.get()){
|
for(FMLMissingMappingsEvent.MissingMapping mapping : event.get()){
|
||||||
//Ignore removal of foreign paxels
|
//Ignore removal of foreign paxels
|
||||||
if(mapping.name != null && mapping.name.contains("paxel")){
|
if(mapping.name != null){
|
||||||
|
if(mapping.name.contains("paxel") || mapping.name.contains("itemSpecial")){
|
||||||
mapping.ignore();
|
mapping.ignore();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
Binary file not shown.
After Width: | Height: | Size: 531 B |
Loading…
Reference in a new issue