mirror of
https://github.com/Ellpeck/ActuallyAdditions.git
synced 2024-11-22 07:13:28 +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,8 +132,10 @@ public class ActuallyAdditions{
|
|||
public void missingMapping(FMLMissingMappingsEvent event){
|
||||
for(FMLMissingMappingsEvent.MissingMapping mapping : event.get()){
|
||||
//Ignore removal of foreign paxels
|
||||
if(mapping.name != null && mapping.name.contains("paxel")){
|
||||
mapping.ignore();
|
||||
if(mapping.name != null){
|
||||
if(mapping.name.contains("paxel") || mapping.name.contains("itemSpecial")){
|
||||
mapping.ignore();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Binary file not shown.
After Width: | Height: | Size: 531 B |
Loading…
Reference in a new issue