Skip to content

Instantly share code, notes, and snippets.

@poma
Created February 5, 2017 09:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save poma/0a9ec82c3d3d3a51f811c12fb93ec034 to your computer and use it in GitHub Desktop.
Save poma/0a9ec82c3d3d3a51f811c12fb93ec034 to your computer and use it in GitHub Desktop.
From 8bc0c14ed29957619da7efae24ee6046fd403cba Mon Sep 17 00:00:00 2001
From: Poma <Semenov.Roman@mail.ru>
Date: Sun, 5 Feb 2017 12:28:07 +0300
Subject: [PATCH] 1
---
config.lua | 1 +
data.lua | 11 +++++++++++
info.json | 1 +
3 files changed, 13 insertions(+)
diff --git a/config.lua b/config.lua
index 2e74b70..5d41436 100644
--- a/config.lua
+++ b/config.lua
@@ -7,5 +7,6 @@ enabled["angels_petrochem"] = true
enabled["angels_refining"] = true
enabled["angels_smelting"] = true
enabled["angles_warehouses"] = true
+enabled["angles_oresilos"] = true
enabled["bio_industries"] = true
diff --git a/data.lua b/data.lua
index bcc2a5a..18799f4 100644
--- a/data.lua
+++ b/data.lua
@@ -68,6 +68,17 @@ if enabled["angles_warehouses"] then
buildings["angels-warehouse-requester"] = buildings["angels-warehouse-passive-provider"]
end
+-- Angel's Oresilos
+if enabled["angles_oresilos"] then
+ buildings["silo-coal"] = { type="container", originalSize=4, newSize=3 }
+ buildings["silo-ore1"] = buildings["silo-coal"]
+ buildings["silo-ore2"] = buildings["silo-coal"]
+ buildings["silo-ore3"] = buildings["silo-coal"]
+ buildings["silo-ore4"] = buildings["silo-coal"]
+ buildings["silo-ore5"] = buildings["silo-coal"]
+ buildings["silo-ore6"] = buildings["silo-coal"]
+end
+
-- Angel's Bio Processing
if enabled["angels_bioprocessing"] then
buildings["algae-farm"] = { originalSize=7, newSize=5, pipeCons={{-3,0}, {3,0}} }
diff --git a/info.json b/info.json
index 0b09b08..95050bb 100644
--- a/info.json
+++ b/info.json
@@ -10,6 +10,7 @@
"dependencies": ["base >= 0.14.0",
"? angelsaddons-pressuretanks >= 0.1.1",
"? angelsaddons-warehouses >= 0.1.3",
+ "? angelsaddons-oresilos >= 0.2.2",
"? angelsbioprocessing >= 0.2.1",
"? angelspetrochem >= 0.2.1",
"? angelsrefining >= 0.3.0",
--
2.7.2.windows.1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment