Skip to content

Commit 6340b92

Browse files
committed
Update to 0.18
1 parent a8d56c9 commit 6340b92

File tree

3 files changed

+10
-8
lines changed

3 files changed

+10
-8
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ This Mod adds inserter capacity bonus for normal insertes to 25,50,75,100 and st
44
https://mods.factorio.com/mods/DerMistkaefer/BetterInserters/
55

66
# Changelog
7+
1.1.1 - Update to 0.18
8+
79
1.1.0 - Update to 0.15
810

911
1.0.0 - First Release

data.lua

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,15 @@ function BetterInserters_addTechnology(thisName,thisIcon,thisPrerequisites,thisC
1616

1717
obj.unit.count = thisCount
1818
if thisIngredients == 1 then
19-
obj.unit.ingredients = {{"science-pack-1", 1}}
19+
obj.unit.ingredients = {{"automation-science-pack", 1}}
2020
elseif thisIngredients == 2 then
21-
obj.unit.ingredients = {{"science-pack-1", 1},{"science-pack-2", 1}}
21+
obj.unit.ingredients = {{"automation-science-pack", 1},{"logistic-science-pack", 1}}
2222
elseif thisIngredients == 3 then
23-
obj.unit.ingredients = {{"science-pack-1", 1},{"science-pack-2", 1},{"science-pack-3", 1}}
23+
obj.unit.ingredients = {{"automation-science-pack", 1},{"logistic-science-pack", 1},{"chemical-science-pack", 1}}
2424
elseif thisIngredients == 4 then
25-
obj.unit.ingredients = {{"science-pack-1", 1},{"science-pack-2", 1},{"science-pack-3", 1},{"production-science-pack", 1}}
25+
obj.unit.ingredients = {{"automation-science-pack", 1},{"logistic-science-pack", 1},{"chemical-science-pack", 1},{"production-science-pack", 1}}
2626
elseif thisIngredients == 5 then
27-
obj.unit.ingredients = {{"science-pack-1", 1},{"science-pack-2", 1},{"science-pack-3", 1},{"production-science-pack", 1},{"high-tech-science-pack", 1}}
27+
obj.unit.ingredients = {{"automation-science-pack", 1},{"logistic-science-pack", 1},{"chemical-science-pack", 1},{"production-science-pack", 1},{"utility-science-pack", 1}}
2828
end
2929
obj.unit.time = thisTime
3030
obj.order = thisOrder

info.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
22
"name": "BetterInserters",
3-
"version": "1.1.0",
3+
"version": "1.1.1",
44
"title": "Better Inserters",
55
"author": "DerMistkaefer",
66
"contact": "http://www.dermistkaefer.com/contact",
77
"homepage": "http://www.dermistkaefer.com",
88
"description": "This Mod adds inserter capacity bonus for normal insertes to 25,50,75,100 and stack inserters to 50,100,150,200.",
9-
"factorio_version":"0.15",
10-
"dependencies": ["base >= 0.15.0"]
9+
"factorio_version":"0.18",
10+
"dependencies": ["base >= 0.18.0"]
1111
}

0 commit comments

Comments
 (0)