Skip to content

Commit c95f038

Browse files
committed
Crash with AAI Loaders #520
1 parent 0fdc13e commit c95f038

File tree

4 files changed

+8
-3
lines changed

4 files changed

+8
-3
lines changed

boblogistics/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+
Bugfixes:
5+
- Fixed crash with AAI Loaders #520
6+
---------------------------------------------------------------------------------------------------
27
Version: 2.0.5
38
Date: 15. 01. 2026
49
Bugfixes:

boblogistics/info.json

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

boblogistics/prototypes/aai-loaders.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
if mods["aai-loaders"] then
1+
if mods["aai-loaders"] and settings.startup["aai-loaders-mode"] and settings.startup["aai-loaders-mode"].value ~= "graphics-only" then
22
local ingredients = {
33
basic = { { type = "item", name = "bob-basic-transport-belt", amount = 1 } },
44
regular = { { type = "item", name = "transport-belt", amount = 1 } },

boblogistics/prototypes/recipe/belt-recipe.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -266,6 +266,7 @@ if settings.startup["bobmods-logistics-beltoverhaul"].value == true then
266266
if mods["space-age"] then
267267
data.raw.recipe["bob-basic-transport-belt"].category = "pressing"
268268
data.raw.recipe["bob-basic-underground-belt"].category = "pressing"
269+
data.raw.recipe["bob-basic-splitter"].category = "pressing"
269270
data.raw.recipe["express-transport-belt"].category = "pressing"
270271
data.raw.recipe["express-underground-belt"].category = "pressing"
271272
data.raw.recipe["express-splitter"].category = "pressing"
@@ -349,7 +350,6 @@ if mods["space-age"] then
349350
data.raw.recipe["bob-turbo-underground-belt"].category = "pressing"
350351
data.raw.recipe["bob-turbo-splitter"].category = "pressing"
351352
data.raw.recipe["bob-ultimate-transport-belt"].category = "pressing"
352-
data.raw.recipe["bob-basic-splitter"].category = "pressing"
353353
data.raw.recipe["bob-ultimate-underground-belt"].category = "pressing"
354354
data.raw.recipe["bob-ultimate-splitter"].category = "pressing"
355355
end

0 commit comments

Comments
 (0)