Skip to content

Commit a3cc761

Browse files
Polar-ZeroKiwiHawkQatavin
authored
Fix Minor Korean Mistranslation (#524)
* Fix Minor Korean Mistranslation * Automation Tech Cost Multiplier #534 * Fix burner/steam assembling machine categories (#532) * Fix burner/steam assem machine categories Applies appropriate copy_categories_from function to Burner and Steam Assembling Machines. * Assembler Crafting Categories #528 --------- Co-authored-by: KiwiHawk <59639+KiwiHawk@users.noreply.github.com> * Format Code * Speed up burner reactors #529 * Speed up burner reactors Decrease specific_heat of heat sources (fluid heat sources copy from solid burner heat sources) to reduce the time it takes for them to reach working temperature. * Updating version number and changelog --------- Co-authored-by: KiwiHawk <59639+KiwiHawk@users.noreply.github.com> * Shorten charge_approach_distance for robochests #533 * Shorten charge_approach_distance for robochests Robochests previously had their charge_approach_distance set to 5, the same as Roboports. This didn't really make sense because Robochests are smaller and their charge point is at their center rather than around their perimeter. This causes robots to take significantly longer to fly to the charging point, especially when they're out of power. Changing the distance to 2 makes things a lot more efficient, while still looking better than having them all bunch up like they would at distance 0. * Updating version number and changelog --------- Co-authored-by: KiwiHawk <59639+KiwiHawk@users.noreply.github.com> * Updating mod versions and changelogs --------- Co-authored-by: KiwiHawk <59639+KiwiHawk@users.noreply.github.com> Co-authored-by: Qatavin <108201496+Qatavin@users.noreply.github.com> Co-authored-by: StyLuaFormatter <KiwiHawk@users.noreply.github.com>
1 parent 841fb22 commit a3cc761

26 files changed

Lines changed: 100 additions & 45 deletions

File tree

bobassembly/changelog.txt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
11
---------------------------------------------------------------------------------------------------
2+
Version: 2.0.6
3+
Date: ???
4+
Bugfixes:
5+
- Fixed Burner and Steam Assembling machines not being able to craft some recipes #528
6+
- Fixed Automation tech not ignoring tech cost multiplier #534
7+
---------------------------------------------------------------------------------------------------
28
Version: 2.0.5
39
Date: 18. 01. 2026
410
Bugfixes:

bobassembly/data-final-fixes.lua

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,12 @@ bobmods.lib.machine.copy_categories_from("furnace", "electric-furnace", "bob-ele
99
bobmods.lib.machine.copy_categories_from("furnace", "electric-furnace", "bob-electric-furnace-3")
1010
bobmods.lib.machine.copy_categories_from("furnace", "electric-furnace", "bob-multi-purpose-furnace-1")
1111
bobmods.lib.machine.copy_categories_from("furnace", "electric-furnace", "bob-multi-purpose-furnace-2")
12+
13+
if not mods["aai-industry"] and settings.startup["bobmods-assembly-burner"].value == true then
14+
bobmods.lib.machine.copy_categories_from(
15+
"assembling-machine",
16+
"assembling-machine-1",
17+
"bob-burner-assembling-machine"
18+
)
19+
bobmods.lib.machine.copy_categories_from("assembling-machine", "assembling-machine-3", "bob-steam-assembling-machine")
20+
end

bobassembly/info.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "bobassembly",
3-
"version": "2.0.5",
3+
"version": "2.0.6",
44
"factorio_version": "2.0",
55
"title": "Bob's Assembling machines mod",
66
"author": "Bobingabout",

bobassembly/prototypes/assembly-burner.lua

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -333,8 +333,6 @@ if not mods["aai-industry"] and settings.startup["bobmods-assembly-burner"].valu
333333
},
334334
})
335335

336-
bobmods.lib.tech.ignore_tech_cost_multiplier("automation", false)
337-
338336
if settings.startup["bobmods-assembly-limits"].value == true then
339337
data.raw["assembling-machine"]["bob-burner-assembling-machine"].ingredient_count = 2
340338
data.raw["assembling-machine"]["bob-steam-assembling-machine"].ingredient_count = 4

bobelectronics/changelog.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11
---------------------------------------------------------------------------------------------------
2+
Version: 2.0.6
3+
Date: ????
4+
Changes:
5+
- Updated Korean locale #524
6+
---------------------------------------------------------------------------------------------------
27
Version: 2.0.5
38
Date: 15. 01. 2026
49
Changes:

bobelectronics/info.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "bobelectronics",
3-
"version": "2.0.5",
3+
"version": "2.0.6",
44
"factorio_version": "2.0",
55
"title": "Bob's Electronics mod",
66
"author": "Bobingabout",

bobelectronics/locale/ko/bobelectronics.cfg

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@ bob-tinned-copper-cable=주석 도금 구리 전선
1414
bob-insulated-cable=절연 전선
1515
bob-gilded-copper-cable=금 도금 구리 전선
1616
bob-solder=땜납
17-
bob-basic-electronic-components=기초 전자 부품
17+
bob-basic-electronic-components=기본 전자 부품
1818
bob-electronic-components=트랜지스터
1919
bob-processing-electronics=중앙 처리장치
2020
bob-wooden-board=나무 보드
2121
bob-phenolic-board=페놀 보드
2222
bob-fibreglass-board=유리섬유 보드
23-
bob-basic-circuit-board=기초 회로 기판
23+
bob-basic-circuit-board=기본 회로 기판
2424
bob-circuit-board=회로 기판
2525
bob-superior-circuit-board=고급 회로 기판
2626
bob-multi-layer-circuit-board=다층 회로 기판

bobenemies/changelog.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11
---------------------------------------------------------------------------------------------------
2+
Version: 2.0.5
3+
Date: ????
4+
Changes:
5+
- Updated Korean locale #524
6+
---------------------------------------------------------------------------------------------------
27
Version: 2.0.4
38
Date: 15. 01. 2026
49
Changes:

bobenemies/info.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "bobenemies",
3-
"version": "2.0.4",
3+
"version": "2.0.5",
44
"factorio_version": "2.0",
55
"title": "Bob's Enemies mod",
66
"author": "Bobingabout",

bobenemies/locale/ko/bobenemies.cfg

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -235,22 +235,22 @@ bob-pierce=관통
235235
bob-plasma=플라즈마
236236

237237
[entity-description]
238-
bob-poison-enemy-behemoth=(구름 반경: 6.4, 데미지 84/s, 자연 회복 126/s)
239-
bob-poison-enemy-big=(구름 반경: 4, 데미지 36/s, 자연 회복 18/s)
240-
bob-poison-enemy-giant=(구름 반경: 5.2, 데미지 60/s, 자연 회복 60/s)
241-
bob-poison-enemy-huge=(구름 반경: 4.6, 데미지 48/s, 자연 회복 24/s)
242-
bob-poison-enemy-leviathan=(구름 반경: 7, 데미지 120/s, 자연 회복 180/s)
243-
bob-poison-enemy-medium=(구름 반경: 3, 데미지 24/s, 자연 회복 6/s)
244-
bob-poison-enemy-small=(구름 반경: 2, 데미지 12/s, 자연 회복 3/s)
245-
bob-poison-enemy-titan=(구름 반경: 5.8, 데미지 72/s, 자연 회복 72/s)
246-
bob-poison-enemy-worm-behemoth=(구름 반경: 7.8, 데미지 84/s, 자연 회복 126/s)
247-
bob-poison-enemy-worm-big=(구름 반경: 5.4, 데미지 36/s, 자연 회복 18/s)
248-
bob-poison-enemy-worm-giant=(구름 반경: 6.6, 데미지 60/s, 자연 회복 60/s)
249-
bob-poison-enemy-worm-huge=(구름 반경: 6, 데미지 48/s, 자연 회복 24/s)
250-
bob-poison-enemy-worm-leviathan=(구름 반경: 9, 데미지 120/s, 자연 회복 180/s)
251-
bob-poison-enemy-worm-medium=(구름 반경: 4.8, 데미지 24/s, 자연 회복 6/s)
252-
bob-poison-enemy-worm-small=(구름 반경: 4.2, 데미지 12/s, 자연 회복 3/s)
253-
bob-poison-enemy-worm-titan=(구름 반경: 7.2, 데미지 72/s, 자연 회복 72/s)
238+
bob-poison-enemy-behemoth=(구름 반경: 7.3, 데미지 84/s, 자연 회복 420/s)
239+
bob-poison-enemy-big=(구름 반경: 4.4, 데미지 36/s, 자연 회복 36/s)
240+
bob-poison-enemy-giant=(구름 반경: 5.9, 데미지 60/s, 자연 회복 150/s)
241+
bob-poison-enemy-huge=(구름 반경: 5.2, 데미지 48/s, 자연 회복 72/s)
242+
bob-poison-enemy-leviathan=(구름 반경: 8, 데미지 120/s, 자연 회복 600/s)
243+
bob-poison-enemy-medium=(구름 반경: 3.5, 데미지 24/s, 자연 회복 18/s)
244+
bob-poison-enemy-small=(구름 반경: 3, 데미지 12/s, 자연 회복 9/s)
245+
bob-poison-enemy-titan=(구름 반경: 6.6, 데미지 72/s, 자연 회복 252/s)
246+
bob-poison-enemy-worm-behemoth=(구름 반경: 9.6, 데미지 84/s, 자연 회복 420/s)
247+
bob-poison-enemy-worm-big=(구름 반경: 6, 데미지 36/s, 자연 회복 36/s)
248+
bob-poison-enemy-worm-giant=(구름 반경: 7.2, 데미지 60/s, 자연 회복 150/s)
249+
bob-poison-enemy-worm-huge=(구름 반경: 6.6, 데미지 48/s, 자연 회복 72/s)
250+
bob-poison-enemy-worm-leviathan=(구름 반경: 11.4, 데미지 120/s, 자연 회복 600/s)
251+
bob-poison-enemy-worm-medium=(구름 반경: 5.4, 데미지 24/s, 자연 회복 18/s)
252+
bob-poison-enemy-worm-small=(구름 반경: 4.8, 데미지 12/s, 자연 회복 9/s)
253+
bob-poison-enemy-worm-titan=(구름 반경: 8.4, 데미지 72/s, 자연 회복 252/s)
254254

255255
[factoriopedia-description]
256256
bob-acid-enemy-1=[font=default-semibold][color=255,230,192]처치하면 [item=bob-alien-artifact-purple]를 떨굽니다.[/color][/font]

0 commit comments

Comments
 (0)