This commit is contained in:
Joey De Pauw 2020-01-03 16:17:35 +01:00
parent 3de4a98b64
commit ff0d0c0d8d
3 changed files with 12 additions and 39 deletions

View File

@ -1,4 +1,10 @@
--------------------------------------------------------------------------------------------------- ---------------------------------------------------------------------------------------------------
Version: 0.2.2
Date: 2020.01.03
Fixes:
- Air filter machine mk1 changed to type furnace.
- Air filter machine mk1 removed from fast replace group.
---------------------------------------------------------------------------------------------------
Version: 0.2.1 Version: 0.2.1
Date: 2019.12.14 Date: 2019.12.14
Fixes: Fixes:

View File

@ -1,6 +1,6 @@
{ {
"name": "better-air-filtering", "name": "better-air-filtering",
"version": "0.2.1", "version": "0.2.2",
"title": "Better Air Filtering", "title": "Better Air Filtering",
"author": "Joey De Pauw", "author": "Joey De Pauw",
"contact": "joeydepauw@gmail.com", "contact": "joeydepauw@gmail.com",

View File

@ -1,12 +1,12 @@
data:extend({ data:extend({
{ {
type = "assembling-machine", type = "furnace",
name = "air-filter-machine-1", name = "air-filter-machine-1",
icon = "__better-air-filtering__/graphics/icons/air-filter-machine-1.png", icon = "__better-air-filtering__/graphics/icons/air-filter-machine-1.png",
icon_size = 32, icon_size = 32,
flags = { "placeable-neutral", "placeable-player", "player-creation" }, flags = { "placeable-neutral", "placeable-player", "player-creation" },
minable = { hardness = 0.2, mining_time = 0.5, result = "air-filter-machine-1" }, minable = { hardness = 0.2, mining_time = 0.5, result = "air-filter-machine-1" },
fast_replaceable_group = "air-filter-machine", --fast_replaceable_group = "air-filter-machine",
max_health = 150, max_health = 150,
corpse = "medium-remnants", corpse = "medium-remnants",
alert_icon_shift = util.by_pixel(-3, -12), alert_icon_shift = util.by_pixel(-3, -12),
@ -65,8 +65,9 @@ data:extend({
burnt_inventory_size = 1, burnt_inventory_size = 1,
}, },
energy_usage = "50kW", energy_usage = "50kW",
fixed_recipe = "filter-air", result_inventory_size = 0,
ingredient_count = 1, source_inventory_size = 0,
--ingredient_count = 1,
return_ingredients_on_change = true, return_ingredients_on_change = true,
module_specification = { module_specification = {
module_slots = 0 module_slots = 0
@ -128,23 +129,6 @@ data:extend({
base_level = -1, base_level = -1,
pipe_connections = {} pipe_connections = {}
}, },
--{
-- production_type = "input",
-- pipe_picture = assembler2pipepictures(),
-- pipe_covers = pipecoverspictures(),
-- base_area = 10,
-- base_level = -1,
-- pipe_connections = {{ type="input", position = {0, -2} }}
--},
--{
-- production_type = "output",
-- pipe_picture = assembler2pipepictures(),
-- pipe_covers = pipecoverspictures(),
-- base_area = 10,
-- base_level = 1,
-- pipe_connections = { { type = "output", position = { 0, 2 } } },
-- secondary_draw_orders = { north = -1 }
--},
off_when_no_fluid_recipe = true off_when_no_fluid_recipe = true
}, },
crafting_categories = { "air-filtering-advanced" }, crafting_categories = { "air-filtering-advanced" },
@ -214,23 +198,6 @@ data:extend({
base_level = -1, base_level = -1,
pipe_connections = {} pipe_connections = {}
}, },
--{
-- production_type = "input",
-- pipe_picture = assembler3pipepictures(),
-- pipe_covers = pipecoverspictures(),
-- base_area = 2,
-- base_level = -1,
-- pipe_connections = { { type = "input", position = { 0, -2 } } }
--},
--{
-- production_type = "output",
-- pipe_picture = assembler3pipepictures(),
-- pipe_covers = pipecoverspictures(),
-- base_area = 2,
-- base_level = 1,
-- pipe_connections = { { type = "output", position = { 0, 2 } } },
-- secondary_draw_orders = { north = -1 }
--},
off_when_no_fluid_recipe = true off_when_no_fluid_recipe = true
}, },
crafting_categories = { "air-filtering-advanced" }, crafting_categories = { "air-filtering-advanced" },