1
0
mirror of https://github.com/Refactorio/RedMew.git synced 2025-02-21 19:20:07 +02:00

Add Krastorio2 ammos to autofill module

This commit is contained in:
RedRafe 2023-10-03 16:29:41 +02:00
parent 8d45d472c1
commit d26a5d8309

View File

@ -19,6 +19,13 @@ local ammo_locales = {
['piercing-rounds-magazine'] = {'item-name.piercing-rounds-magazine'},
['firearm-magazine'] = {'item-name.firearm-magazine'}
}
local k2_ammo_locales = {
['rifle-magazine'] = {'item-name.rifle-magazine'},
['armor-piercing-rifle-magazine'] = {'item-name.armor-piercing-rifle-magazine'},
['uranium-rifle-magazine'] = {'item-name.uranium-rifle-magazine'},
['imersite-rifle-magazine'] = {'item-name.imersite-rifle-magazine'}
}
if script.active_mods["Krastorio2"] then ammo_locales = k2_ammo_locales end
Public.ammo_locales = ammo_locales
local player_ammos = {} -- player_index -> dict of name -> bool
@ -36,6 +43,14 @@ local default_ammos = {
['firearm-magazine'] = true
}
local k2_default_ammos = {
['rifle-magazine'] = true,
['armor-piercing-rifle-magazine'] = true,
['uranium-rifle-magazine'] = true,
['imersite-rifle-magazine'] = true
}
if script.active_mods["Krastorio2"] then default_ammos = k2_default_ammos end
local function copy(tbl)
local result = {}