SMELT recipes and @individualresults #237


  • New
  • Defect
Closed
  • _ForgeUser7695164 created this issue Jan 18, 2016

    I am having an issue with SMELT recipes where the source block is of the same type on numerous recipes. As a result only one of the recipes will work and all the rest are ignored or overwritten. I believe this is due to the lack of ability to use @individualresults in SMELT recipes.

    My full list of SMELT recipes for items that are based on the iron_ingot block are as follows.

    //Chunk of Iron = Brick of Iron
    SMELT Iron Ingot
    @override
    iron_ore % 10
    = iron_ingot
      @ingredientcondition iron_ore | name Chunk of Iron
      @name Brick of Iron

    //Chunk of Gold = Gold Ingot
    SMELT Gold Ingot
    @override
    gold_ore % 10
    = gold_ingot
      @ingredientcondition gold_ore | name Chunk of Gold
      @name Brick of Gold

    //Silver Ore = Brick of Silver
    SMELT Silver Ingot
    @override
    iron_ore % 8
    = iron_ingot
      @ingredientcondition iron_ore | name Silver Ore
      @name Brick of Silver

    //Tin Ore = Tin Ingot
    SMELT Tin Ingot
    @override
    iron_ore % 2
    = iron_ingot
      @ingredientcondition iron_ore | name Tin Ore
      @name Brick of Tin

    //Aluminum Ore = Aluminum Ingot
    SMELT Aluminum Ingot
    @override
    iron_ore % 6
    = iron_ingot
      @ingredientcondition iron_ore | name Aluminum Ore
      @name Brick of Aluminum

    //Nickel Ore = Nickel Ingot
    SMELT Nickel Ingot
    @override
    iron_ore % 13
    = iron_ingot
      @ingredientcondition iron_ore | name Nickel Ore
      @name Brick of Nickel

    //Zinc Ore = Zinc Ingot
    SMELT Zinc Ingot
    @override
    iron_ore % 4
    = iron_ingot
      @ingredientcondition iron_ore | name Zinc Ore
      @name Brick of Zinc

    //Titanium Ore = Titanium Ingot
    SMELT Titanium Ingot
    @override
    iron_ore % 16
    = iron_ingot
      @ingredientcondition iron_ore | name Titanium Ore
      @name Brick of Titanium

    //Lead Ore = Lead Ingot
    SMELT Lead Ingot
    coal % 3
    = iron_ingot
      @ingredientcondition coal | name Lead Ore
      @name Brick of Lead

    //Copper Ore = Copper Ingot
    SMELT Copper Ingot
    @override
    gold_ore % 10
    = gold_ingot
      @ingredientcondition gold_ore | name Copper Ore
      @name Brick of Copper

    I know that in actuality this should be coded differently with the flag @individualresults but since SMELT recipes do not support this flag I wrote them out as above. Can the flag @individualresults be added to SMELT recipes or is there some other way I can make the above recipes all work properly otherwise?

  • _ForgeUser7695164 added the tags New Defect Jan 18, 2016
  • Ryan_plays_mediocrely posted a comment Feb 27, 2016

    Not currently unfortunately, but it's definitely something I want to improve. Furnaces are annoying though in how they operate, so it may take some time.

  • Ryan_plays_mediocrely closed issue Jun 24, 2020
  • Ryan_plays_mediocrely posted a comment Jun 24, 2020

    This can now be solved with the new ingredient flag support added in v2.23.0


To post a comment, please login or register a new account.