forked from kingarthur91/PyCoalTBaA
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdata.lua
More file actions
48 lines (28 loc) · 1.04 KB
/
data.lua
File metadata and controls
48 lines (28 loc) · 1.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
fun = require("functions/functions")
require("prototypes/recipe-category")
--Angels Mods
require("prototypes/angels-mods/Data")
--all changes to bobs mods should only happen if they havnt already been edited by angels mods or angel compatibility changes
--Bob Mods
require("prototypes/bobs-mods/Data")
require("prototypes/aai-industries/Data")
require("prototypes/bio-industries/Data")
require("prototypes/dl-stacking/Data")
require("prototypes/kaoextended/Data")
require("prototypes/madclowns-mods/Data")
require("prototypes/mining-space-industries/Data")
require("prototypes/omni-mods/Data")
require("prototypes/space-exploration/Data")
require("prototypes/industrialrevolution-WIP/Data")
--[[
if mods['omnimatter_fluid'] then
data.raw.recipe['oil-boiler-1'] = nil
data.raw.item['oil-boiler-1'] = nil
data.raw.boiler['oil-boiler-1'] = nil
for r, rec in pairs(data.raw.technology['oil-machines-mk01'].effects) do
if rec.recipe == 'oil-machines-mk01' then
table.remove(data.raw.technology['oil-boiler-1'].effects, r)
end
end
end
]]--