Add hot stone bricks and hot concrete; Biochambers don't generate hot plastic

https://mods.factorio.com/mod/hot-metals/discussion/677fdef8d37eef8332fa6c2f
https://mods.factorio.com/mod/hot-metals/discussion/675af47f1fba71716b2b7f7f
This commit is contained in:
Simon Brodtmann 2025-01-09 17:08:59 +01:00
parent 59bcccac74
commit 485fc97d74
9 changed files with 26 additions and 3 deletions

View file

@ -1,3 +1,10 @@
---------------------------------------------------------------------------------------------------
Version: 1.2.1
Date: 09.01.2025
Changes:
- Add hot stone bricks and hot concrete (https://mods.factorio.com/mod/hot-metals/discussion/677fdef8d37eef8332fa6c2f)
- Biochambers don't generate hot plastic (https://mods.factorio.com/mod/hot-metals/discussion/675af47f1fba71716b2b7f7f)
---------------------------------------------------------------------------------------------------
Version: 1.2.0
Date: 01.01.2025
Changes:

View file

@ -20,5 +20,8 @@ table.insert(HotMetals.skipTechUnlocksFor, "pipe-to-ground")
if settings.startup["hot-metals-plastic"].value then
table.insert(HotMetals.craftingCategories, "chemistry-or-cryogenics")
table.insert(HotMetals.craftingCategories, "organic")
end
if settings.startup["hot-metals-bricks"].value then
table.insert(HotMetals.items, "concrete")
end

View file

@ -17,4 +17,8 @@ if settings.startup["hot-metals-plastic"].value then
end
end
if settings.startup["hot-metals-bricks"].value then
table.insert(HotMetals.items, "stone-brick")
end
require("compatibility.data")

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

View file

@ -4,7 +4,9 @@ hot=Hot
[mod-setting-name]
hot-metals-time=Cooldown time
hot-metals-plastic=Add hot plastic
hot-metals-bricks=Add hot stone bricks and concrete
[mod-setting-description]
hot-metals-time=The time in seconds for a hot item to cool down.
hot-metals-plastic=Although the temperature of hot plastic is way lower compared to metals, you might want to have a hot variant anyway.
hot-metals-plastic=Although the temperature of hot plastic is way lower compared to metals, you might want to have a hot variant anyway.
hot-metals-bricks=Stone bricks and concrete are not included by default. If you like to play with hot variants, you can enable this option.

View file

@ -12,5 +12,12 @@ data:extend({
setting_type = "startup",
default_value = false,
order = "b"
}
},
{
type = "bool-setting",
name = "hot-metals-bricks",
setting_type = "startup",
default_value = false,
order = "c"
}
})

Binary file not shown.

Binary file not shown.