przemykomo / simple-planes

Planes mod for minecraft forge.
GNU Lesser General Public License v3.0
28 stars 26 forks source link

Preventable Recipe Logspam #20

Closed Partonetrain closed 3 years ago

Partonetrain commented 3 years ago

Biomes' O Plenty plane recipes try to load regardless of if BoP is present or not, creating lots of logspam:

com.google.gson.JsonSyntaxException: Unknown item 'biomesoplenty:palm_boat'
    at net.minecraft.item.crafting.Ingredient.lambda$deserializeItemList$11(Ingredient.java:216) ~[?:?]
    at java.util.Optional.orElseThrow(Optional.java:290) ~[?:1.8.0_265]
    at net.minecraft.item.crafting.Ingredient.func_199803_a(Ingredient.java:215) ~[?:?]
       .....

This can be prevented by a recipe condition like so:

"conditions": [
    {
      "type": "forge:mod_loaded",
      "modid": "bop"
    }
  ]

(not actually sure if that's the modid)

adoxentor commented 3 years ago

will be fixed in helicopter update