Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
---------------------------------------------------------------------------------------------------
Version: 3.2.10
Date: 2025-08-28
Changes:
- Marked Stellar Expedition as incompatible
- Reduced TBP cost of Uranyl Nitrate from 15 -> 10, increased crafting time from 15 -> 42
---------------------------------------------------------------------------------------------------
Version: 3.2.9
Date: 2025-08-23
Bugfixes:
Expand Down
5 changes: 3 additions & 2 deletions info.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "PyBlock",
"version": "3.2.9",
"version": "3.2.10",
"factorio_version": "2.0",
"title": "PyBlock",
"author": "KingArthur",
Expand All @@ -10,6 +10,7 @@
"dependencies": [
"base >= 2.0",
"pyalternativeenergy >= 3.0.0",
"aai-loaders"
"aai-loaders",
"! pystellarexpedition"
]
}
4 changes: 2 additions & 2 deletions prototypes/recipes/recipes-uranium.lua
Original file line number Diff line number Diff line change
Expand Up @@ -178,10 +178,10 @@ RECIPE {
name = "uranyl-nitrate",
category = "scrubber",
enabled = false,
energy_required = 15,
energy_required = 42,
ingredients = {
{type = "item", name = "nylon-rope-uranyl-soaked", amount = 4},
{type = "item", name = "tbp", amount = 15},
{type = "item", name = "tbp", amount = 10},
},
results = {
{type = "item", name = "uranyl-nitrate", amount = 10, probability = .6},
Expand Down