Skip to content

Commit d6f95b4

Browse files
authored
Version 1.0.1 patch 1
2 parents 4dd2072 + ad4eb57 commit d6f95b4

File tree

36 files changed

+126
-62
lines changed

36 files changed

+126
-62
lines changed

angelsaddons-mobility/changelog.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11
---------------------------------------------------------------------------------------------------
2+
Version: 0.0.8
3+
Date: 26.05.2021
4+
Bugfixes:
5+
- Fixed crash when playing without the angels library (inside angels refining)
6+
---------------------------------------------------------------------------------------------------
27
Version: 0.0.7
38
Date: 26.05.2021
49
Changes:

angelsaddons-mobility/data-final-fixes.lua

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
local funcs = require("prototypes/train-functions")
2+
13
local wagons = {
24
angelsmods.addons.mobility.petrotrain.tier_amount >= 1 and "petro-tank1" or nil,
35
angelsmods.addons.mobility.petrotrain.tier_amount >= 2 and "petro-tank1-2" or nil,
@@ -44,4 +46,5 @@ for _, prototype_type in pairs {
4446
end
4547
end
4648
end
47-
angelsmods.functions.add_speed_local()
49+
50+
funcs.add_speed_locale()

angelsaddons-mobility/info.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "angelsaddons-mobility",
3-
"version": "0.0.7",
3+
"version": "0.0.8",
44
"factorio_version": "1.1",
55
"title": "Angel's Addons - Mass Transit",
66
"author": "Arch666Angel, lovely_santa",

angelsaddons-mobility/prototypes/train-functions.lua

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ local function set_type(name)
1414
return train_type
1515
end
1616

17-
function angelsmods.functions.add_speed_local()
17+
local function add_speed_locale()
1818
local parts = {"cargo-wagon","fluid-wagon","artillery-wagon"}
1919
for _, part in pairs(parts) do
2020
for _,train in pairs(data.raw[part]) do
@@ -405,5 +405,6 @@ return {
405405
generate_train_recipe = generate_train_recipe,
406406
generate_train_technology = generate_train_technology,
407407
update_equipment_grid = update_equipment_grid,
408-
update_equipment = update_equipment
408+
update_equipment = update_equipment,
409+
add_speed_locale = add_speed_locale
409410
}

angelsaddons-storage/changelog.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11
---------------------------------------------------------------------------------------------------
2+
Version: 0.0.6
3+
Date: 31.05.2021
4+
Bugfixes:
5+
- Fixed crash related to typo in hidden dependencies
6+
---------------------------------------------------------------------------------------------------
27
Version: 0.0.5
38
Date: 26.05.2021
49
Changes:

angelsaddons-storage/info.json

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "angelsaddons-storage",
3-
"version": "0.0.5",
3+
"version": "0.0.6",
44
"factorio_version": "1.1",
55
"title": "Angel's Addons - Storage Options",
66
"author": "Arch666Angel",
@@ -9,8 +9,7 @@
99
"description": "Adds pressure tanks (extremely large tanks), warehouses and silos.",
1010
"dependencies": [
1111
"base >= 1.1.33",
12-
13-
"(?) angelsfining",
14-
"? angelspetrochem >= 0.9.17"
12+
"(?) angelsrefining",
13+
"? angelspetrochem >= 0.9.19"
1514
]
1615
}

angelsbioprocessing/changelog.txt

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,11 @@
11
---------------------------------------------------------------------------------------------------
2+
Version: 0.7.19
3+
Date: 31.05.2021
4+
Bugfixes:
5+
- Fixed biter refugium technology should depend on walls
6+
- Fixed crash related to opening another players inventory
7+
- Updated resin and rubber accessibility for red/green wires
8+
---------------------------------------------------------------------------------------------------
29
Version: 0.7.18
310
Date: 26.05.2021
411
Changes:

angelsbioprocessing/control.lua

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -157,8 +157,9 @@ end)
157157
script.on_event(defines.events.on_player_main_inventory_changed, function(event)
158158
local player = game.get_player(event.player_index)
159159
local opened_entity = player.opened
160-
if not (opened_entity and opened_entity.valid and opened_entity.object_name ~= 'LuaEquipmentGrid' and
161-
(opened_entity.type == "lab" or opened_entity.type == "mining-drill")) then return end
160+
if not (opened_entity and opened_entity.valid) then return end
161+
if opened_entity.object_name == 'LuaEquipmentGrid' or opened_entity.object_name == 'LuaPlayer' then return end
162+
if not (opened_entity.type == "lab" or opened_entity.type == "mining-drill") then return end
162163

163164
local module_inventory = opened_entity.get_module_inventory()
164165
if not module_inventory then return end

angelsbioprocessing/info.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
{
22
"name": "angelsbioprocessing",
3-
"version": "0.7.18",
3+
"version": "0.7.19",
44
"factorio_version": "1.1",
55
"title": "Angel's Bioprocessing",
66
"author": "Arch666Angel",
77
"contact": "https://discord.gg/ff5p6KE",
88
"homepage": "https://forums.factorio.com/viewforum.php?f=185",
99
"description": "Adds ways to recycle and process waste products through biological means and make use of biological processes and farming.",
1010
"dependencies": [
11-
"angelsrefining >= 0.11.20",
12-
"angelspetrochem >= 0.9.18",
13-
"angelssmelting >= 0.6.15",
11+
"angelsrefining >= 0.11.21",
12+
"angelspetrochem >= 0.9.19",
13+
"angelssmelting >= 0.6.16",
1414
"? bobenemies >= 0.18.5"
1515
]
1616
}

angelsbioprocessing/prototypes/technology/bio-processing-wood-paper.lua

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,10 @@ data:extend(
1515
type = "unlock-recipe",
1616
recipe = "wood-pellets"
1717
},
18+
{
19+
type = "unlock-recipe",
20+
recipe = "bio-resin-wood-reprocessing"
21+
},
1822
},
1923
unit =
2024
{
@@ -136,10 +140,6 @@ data:extend(
136140
type = "unlock-recipe",
137141
recipe = "wood-sawing-1"
138142
},
139-
{
140-
type = "unlock-recipe",
141-
recipe = "bio-resin-wood-reprocessing"
142-
},
143143
{
144144
type = "unlock-recipe",
145145
recipe = "solid-saw"

0 commit comments

Comments
 (0)