Skip to content

Commit

Permalink
Initial 0.18 release (#19)
Browse files Browse the repository at this point in the history
  • Loading branch information
LovelySanta authored Feb 9, 2020
1 parent 94f9f16 commit 8b7ff10
Show file tree
Hide file tree
Showing 3,017 changed files with 66,122 additions and 55,143 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,4 +1,12 @@
---------------------------------------------------------------------------------------------------
Version: 0.2.0
Date: 2020-02-09
Changes:
- Updated to 0.18
Bugfixes:
- Fixed unknown message when trying to deploy without a transfer port
- Disabled debug settings
---------------------------------------------------------------------------------------------------
Version: 0.1.5
Date: 13. 08. 2019
Changes:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
local cab = require 'src.cab'

--[ [-- DEBUG ONLY --
--[[-- DEBUG ONLY --
script.on_event(defines.events.on_player_joined_game, function(event)
local player_index = event.player_index
if player_index then
Expand Down
17 changes: 17 additions & 0 deletions angelsaddons-cab/data-updates.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
if angelsmods.industries then
local OV = angelsmods.functions.OV

if angelsmods.industries.components then
require("prototypes.recipes.cab-updates")
end
OV.remove_prereq("angels-cab", "automobilism")
OV.add_prereq("angels-cab", "angels-crawler")
end

require "prototypes.entities.cab-updates"

if mods["bobvehicleequipment"] then
table.insert(data.raw["equipment-grid"]["angels-cab"].equipment_categories, "tank")
table.insert(data.raw["equipment-grid"]["angels-cab"].equipment_categories, "vehicle")
table.insert(data.raw["equipment-grid"]["angels-cab"].equipment_categories, "armoured-vehicle")
end
12 changes: 9 additions & 3 deletions angelsaddons-cab_0.1.5/data.lua → angelsaddons-cab/data.lua
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
if not angelsmods then angelsmods = {} end
if not angelsmods.addons then angelsmods.addons = {} end
if not angelsmods.addons.cab then angelsmods.addons.cab = {} end
if not angelsmods then
angelsmods = {}
end
if not angelsmods.addons then
angelsmods.addons = {}
end
if not angelsmods.addons.cab then
angelsmods.addons.cab = {}
end

require("prototypes.cab-category")

Expand Down
File renamed without changes
File renamed without changes
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"name": "angelsaddons-cab",
"version": "0.1.5",
"version": "0.2.0",
"factorio_version": "0.18",
"title": "Angel's Addons - C.A.B.",
"author": "Arch666Angel, lovely_santa",
"contact": "",
"homepage": "",
"description": "Adds another type of Crawler",
"dependencies": [
"base >= 0.17.35",
"? angelsindustry >= 0.1.0"
"base >= 0.18.1",
"? angelsindustry >= 0.3.0"
]
}
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ data:extend(
{
type = "item-subgroup",
name = "angels-cab",
group = mods["angelsindustries"] and "angels-enhancement" or "logistics",
order = mods["angelsindustries"] and "h" or "zc",
group = mods["angelsindustries"] and "angels-vehicles" or "logistics",
order = mods["angelsindustries"] and "da" or "zc",
},
})
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ data:extend(
name = "angels-cab",
icon = "__angelsaddons-cab__/graphics/icons/cab-icon.png",
icon_size = 32,
subgroup = mods["angelsindustries"] and "angels-vehicles" or "angels-cab",
order = mods["angelsindustries"] and "c[angels-cab]" or "a",
subgroup = mods["angelsindustries"] and "angels-vehicle-car" or "angels-cab",
order = mods["angelsindustries"] and "b[crawlers]-b" or "a",
place_result = "angels-cab",
stack_size = 1
},
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ local energyInterfaceTransferRates = {}
for tier,rate in pairs(energyInterfaceSettings.transferRates) do
energyInterfaceTransferRates[string.format(energyInterfaceSettings.name, "-"..tier)] = rate
end
log(serpent.block(energyInterfaceTransferRates))

-------------------------------------------------------------------------------
-- internal cab functions --
Expand Down Expand Up @@ -139,7 +138,7 @@ return {

-- check if the vehicle has at least one interface equipment
if not deployedCab["angels-cab"].grid.get_contents()["angels-cab-energy-interface-mk1"] then
return cannotDeploy(deployedCab["angels-cab"], {"angels-cab-messages.noEnergyInterface", {"equipment-name.angels-cab-energy-interface", "MK1"}})
return cannotDeploy(deployedCab["angels-cab"], {"angels-cab-messages.deploy-noEnergyInterface", {"equipment-name.angels-cab-energy-interface", "MK1"}})
end

-- deploy the vehicle
Expand Down
File renamed without changes
12 changes: 0 additions & 12 deletions angelsaddons-cab_0.1.5/data-updates.lua

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
---------------------------------------------------------------------------------------------------
Version: 0.2.0
Date: 29.03.2019
Version: 0.2.1
Date: 2020-02-09
Changes:
- update to 0.17
- reduced size of zone expander hitboxes
- Updated most of the entity/recipes names
- Fixed startup sounds for robots
---------------------------------------------------------------------------------------------------
Version: 0.1.0
Date: 01.04.2018
Version: 0.2.0
Date: ??
Changes:
- merged mods and first release

- update to 0.18
12 changes: 12 additions & 0 deletions angelsaddons-liquidrobot/data-updates.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
-- if angelsmods.industries then
-- local OV = angelsmods.functions.OV

-- if angelsmods.industries.components then
-- require("prototypes.recipes.cab-updates")
-- end
-- data.raw["item-subgroup"]["angels-cab"].group = "angels-logistics"
-- OV.remove_prereq("angels-cab", "automobilism")
-- OV.add_prereq("angels-cab", "angels-crawler")
-- end

require("prototypes.entities.liquid-robot-generator")
Original file line number Diff line number Diff line change
@@ -1,14 +1,17 @@
if not angelsmods then angelsmods = {} end
if not angelsmods.addons then angelsmods.addons = {} end
if not angelsmods.addons.liquidrobot then angelsmods.addons.liquidrobot = {} end
if not angelsmods then
angelsmods = {}
end

require("prototypes.liquidbot-category")
if not angelsmods.addons then
angelsmods.addons = {}
end

require("prototypes.entities.liquid-robot")
if not angelsmods.addons.liquidrobot then
angelsmods.addons.liquidrobot = {}
end

require("prototypes.liquidbot-category")
require("prototypes.entities.liquid-robot")
require("prototypes.items.liquid-robot")

require("prototypes.recipes.liquid-robot-recipes")

require("prototypes.technology.liquid-robot-technology")

Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"name": "angelsaddons-liquidrobot",
"version": "0.1.1",
"factorio_version": "0.16",
"version": "0.2.1",
"factorio_version": "0.18",
"title": "Angel's Addons - Liquid Cargo Bot",
"author": "Arch666Angel",
"contact": "",
"homepage": "",
"description": "Adds another type of Cargobot",
"dependencies": [
"base >= 0.16.0",
"? angelsindustry >= 0.1.0"
"base >= 0.18.0",
"? angelsindustry >= 0.3.0"
]
}
Loading

0 comments on commit 8b7ff10

Please sign in to comment.