49 lines
1.7 KiB
Lua
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

require("prototypes.fuel")
require("prototypes.fish")
require("prototypes.washers")
require("prototypes.seed-extractor")
angelsmods.trigger.smelting_products["cobalt"].plate=true
require("prototypes.artillery-prototype.artillery-turret-prototype") --фикс убирающий био-арту и добовляющий новую на базе обычной
require("prototypes.beltentities") --переехало из paranoidal-tweaks_0.18.34 (sbelyakov)
require("prototypes.micro-fix") --доработка напильником всего подряд -- фиксы от Кирика
require("prototypes.entity.entity") --фиксы неправильных имён от SEO
require("prototypes.recipe-new") --новые рецепты
require("prototypes.BetterAlertArrows_100") --мод BetterAlertArrows
require("prototypes.mod_compatibility.heroturrets")
--перенаправляем функцию ангела на функцию боба
if not mods["angelsindustries"] then
function angelsmods.functions.OV.add_unlock(technology, recipe)
if
type(technology) == "string" and
type(recipe) == "string" and
data.raw.technology[technology] and
data.raw.recipe[recipe]
then
bobmods.lib.tech.add_recipe_unlock(technology, recipe)
end
end
end
-- Uniform recipe mod
for _,r in pairs(data.raw["recipe"]) do
r.always_show_products=true;
r.show_amount_in_title=false;
if r.normal ~= nil then
r.normal.always_show_products = true;
r.normal.show_amount_in_title = false;
end
if r.expensive ~= nil then
r.expensive.always_show_products = true;
r.expensive.show_amount_in_title = false;
end
end
-- Uniform recipe end