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.6
Date: ????
Bugfixes:
- Fixed disabling fun entity names mod setting not applying to atomizer and solid separator
- Fixed disabling fun entity names mod setting breaking when using non-english locale
---------------------------------------------------------------------------------------------------
Version: 3.2.5
Date: 2025-06-08
Locale:
Expand Down
7 changes: 4 additions & 3 deletions data-updates.lua
Original file line number Diff line number Diff line change
Expand Up @@ -298,11 +298,12 @@ if settings.startup["disable-pyblock-fun-names"].value then
"slaughterhouse-mk00",
"soil-extractor-mk00",
"washer-mk00",
"wpu-mk00"
"wpu-mk00",
"solid-separator-mk00"
}) do
data.raw["assembling-machine"][entity].localised_name = { "entity-name-alt." .. entity }
data.raw["assembling-machine"][entity].localised_name = { "", "entity-name-alt." .. entity, "entity-name." .. entity }
end
data.raw["furnace"]["compost-plant-mk00"].localised_name = { "entity-name-alt.compost-plant-mk00" }
data.raw["furnace"]["compost-plant-mk00"].localised_name = { "", "entity-name-alt.compost-plant-mk00", "entity-name-alt.compost-plant-mk00" }
end

if register_cache_file ~= nil then
Expand Down
2 changes: 1 addition & 1 deletion info.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "PyBlock",
"version": "3.2.5",
"version": "3.2.6",
"factorio_version": "2.0",
"title": "PyBlock",
"author": "KingArthur",
Expand Down
3 changes: 1 addition & 2 deletions locale/en/locale.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -53,14 +53,13 @@ shunt-inserter=Shunt Inserter

[entity-name-alt]
# just the normal names for these things
driftwood=Driftwood
ddc-mk00=Destructive Distilation Column MK 00
soil-extractor-mk00=Soil Extractor MK 00
solid-separator-mk00=Solid Separator MK 00
burner-quenching-tower=Steampowered Quenching Tower
washer-mk00=Washer MK 00
wpu-mk00=Wood Processing Unit MK 00
atomizer-mk00=Automizer MK 00
atomizer-mk00=Atomizer MK 00
automated-screener-mk00=Automated Screener MK 00
slaughterhouse-mk00=Slaughterhouse MK 00
fwf-mk00=Fastwood Forestry MK 00
Expand Down