Skip to content

Commit 29e7856

Browse files
committed
Update to Factorio 1.0
1 parent ad10751 commit 29e7856

File tree

3 files changed

+8
-6
lines changed

3 files changed

+8
-6
lines changed

data.lua

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ function FastLongInserter_addItem(base,baseName,order)
2424
obj.name = FLI.modName .. "_" .. baseName
2525
obj.icon = icon
2626
obj.icon_size = 32
27+
obj.icon_mipmaps = 0
2728
obj.place_result = obj.name
2829
obj.order = order
2930

@@ -78,6 +79,7 @@ function FastLongInserter_addItemG(base,baseName,GhostName)
7879
obj.name = FLI.modName .. "_" .. GhostName
7980
obj.icon = icon
8081
obj.icon_size = 32
82+
obj.icon_mipmaps = 0
8183
obj.place_result = obj.name
8284
obj.flags = {"hidden"}
8385

info.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
22
"name": "FastLongInserters",
3-
"version": "1.3.1",
3+
"version": "1.4.0",
44
"title": "Fast Long Inserters",
55
"author": "DerMistkaefer",
66
"contact": "http://www.dermistkaefer.com/contact",
77
"homepage": "http://www.dermistkaefer.com",
88
"description": "Fast Long Inserters is a mod that adds the normal inserters in a long hand variant.",
9-
"factorio_version":"0.18",
10-
"dependencies": ["base >= 0.18.0"]
9+
"factorio_version": "1.0",
10+
"dependencies": ["base >= 1.0.0"]
1111
}

prototypes/technology.lua

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ data:extend({
77
type = "technology",
88
name = FLI.modName .. "-1",
99
icon = FLI.techIcon,
10-
icon_size = 32,
10+
icon_size = 32,
1111
effects = {{type = "unlock-recipe",recipe = FLI.modName.."_fast-inserter"}},
1212
prerequisites = {"logistics"},
1313
unit = {count = 75,ingredients = {{"automation-science-pack", 1}},time = 5}
@@ -16,7 +16,7 @@ data:extend({
1616
type = "technology",
1717
name = FLI.modName .. "-2",
1818
icon = FLI.techIcon,
19-
icon_size = 32,
19+
icon_size = 32,
2020
effects = {{type = "unlock-recipe",recipe = FLI.modName.."_filter-inserter"}},
2121
prerequisites = {"logistics","electronics",FLI.modName.."-1"},
2222
unit = {count = 75, ingredients = {{"automation-science-pack", 1},{"logistic-science-pack", 1}},time = 10}
@@ -25,7 +25,7 @@ data:extend({
2525
type = "technology",
2626
name = FLI.modName .. "-3",
2727
icon = FLI.techIcon,
28-
icon_size = 32,
28+
icon_size = 32,
2929
effects = {{type = "unlock-recipe", recipe = FLI.modName.."_stack-inserter"},{type = "unlock-recipe", recipe = FLI.modName.."_stack-filter-inserter"}},
3030
prerequisites = {"stack-inserter",FLI.modName.."-2"},
3131
unit = {count = 75, ingredients = {{"automation-science-pack", 1},{"logistic-science-pack", 1},{"chemical-science-pack", 1}},time = 15}

0 commit comments

Comments
 (0)