codetaylor / pyrotech-1.12

An early game mod with new primitive devices, combustion machines, smelting mechanics, storage options, tools, torches, advancements, and absolutely zero GUIs -- with exception to the substantially complete, mostly illustrated, and charred guidebook.
https://pyrotech.readthedocs.io/en/latest/
Other
52 stars 19 forks source link

Add the lit state real in lighting items and combustion machines #229

Closed jonthemoron closed 3 years ago

jonthemoron commented 4 years ago

I think it would make PT more supportive/compatible with other mods such as Tough as Nails if the lit state in the stone and refractory combustion machines was real, so that a temperature value could be assigned to them.

codetaylor commented 4 years ago

I think torches also have a display-only lit state.

codetaylor commented 4 years ago

Looks like the combustion machines were compatible this whole time:

  {
    "state": {
      "block": "pyrotech:stone_sawmill",
      "properties": {
        "type": "BOTTOM_LIT"
      }
    },
    "temperature": 300.0
  }

Torches are a different story, though.

codetaylor commented 4 years ago

Torches have been altered and this will work in 1.12.2-1.5.0:

  {
    "state": {
      "block": "pyrotech:torch_fiber",
      "properties": {
        "type": "LIT"
      }
    },
    "temperature": 300.0
  }