Files
barotrauma-localmods/QuickStackToBag/Lua/Cyka/quickreload_loadmap.lua
2025-03-30 23:29:26 +02:00

17 lines
443 B
Lua

-- Numbers indicate the maximum number of items that can be loaded
-- The limit is either the stack size (cramming in as many as fit)
-- Or this number
local LOAD_MAP = {
plasmacutter = { oxygentank = 1 },
weldingtool = { weldingfueltank = 1 },
revolver = { revolverround = 999 },
harpooncoilrifle = {
spear = 999,
batterycell = 1
},
anechoicdivingsuit = { oxygentank = 1, },
handheldsonar = { batterycell = 1 },
}
return LOAD_MAP