Repair the lack of battery frame in battery 6

Infinite Ores, Refining, Ore Processing ...

Moderator: Arch666Angel

Post Reply
zq56095708
Manual Inserter
Manual Inserter
Posts: 2
Joined: Mon Feb 07, 2022 8:22 am
Contact:

Repair the lack of battery frame in battery 6

Post by zq56095708 »

In angelsindustries_0.4.15\prototypes\recipes\components-batteries-recipes,you can find

Code: Select all

{
      type = "recipe",
      name = "battery-6",
      enabled = false,
      category = "crafting-with-fluid",
      energy_required = 10,
      ingredients =
      {
        {type = "item", name = "battery-casing", amount = 1},
        {type = "item", name = "battery-anode-6", amount = 3},
        {type = "item", name = "battery-cathode-6", amount = 3},
        {type = "fluid", name = "battery-electrolyte-6", amount = 10}
      },
      results=
      {
        {type = "item", name= "battery-6", amount=1},
      },
change it to

Code: Select all

{
      type = "recipe",
      name = "battery-6",
      enabled = false,
      category = "crafting-with-fluid",
      energy_required = 10,
      ingredients =
      {
        {type = "item", name = "battery-casing", amount = 1},
        {type = "item", name = "battery-frame-6", amount = 1},
        {type = "item", name = "battery-anode-6", amount = 3},
        {type = "item", name = "battery-cathode-6", amount = 3},
        {type = "fluid", name = "battery-electrolyte-6", amount = 10}
      },
      results=
      {
        {type = "item", name= "battery-6", amount=1},
      },
In this way, the formula will be corrected correctly.

Post Reply

Return to “Angels Mods”