Skip to content

Commit

Permalink
Added Legion Stronghold to Lootbox Collector Transports List
Browse files Browse the repository at this point in the history
  • Loading branch information
Damgam committed May 17, 2024
1 parent b204982 commit e7653c5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions luarules/gadgets/scav_lootbox_collector.lua
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ end
-- number represents maximum tier of lootbox that can be picked up
local transportsList = {}

for unitDefName, tier in pairs({armatlas_scav = 1, corvalk_scav = 1, armdfly_scav = 2,corseah_scav = 2}) do
for unitDefName, tier in pairs({armatlas_scav = 1, corvalk_scav = 1, armdfly_scav = 2, corseah_scav = 2, legstronghold_scav = 2}) do
if UnitDefNames[unitDefName] then
transportsList[UnitDefNames[unitDefName].id] = tier
end
Expand All @@ -36,7 +36,7 @@ end

local lootboxList = {}

for unitDefName, tier in pairs({lootboxbronze_scav = 1,lootboxsilver_scav = 1, lootboxgold_scav = 2,lootboxplatinum_scav = 2}) do
for unitDefName, tier in pairs({lootboxbronze_scav = 1, lootboxsilver_scav = 1, lootboxgold_scav = 2, lootboxplatinum_scav = 2}) do
if UnitDefNames[unitDefName] then
lootboxList[UnitDefNames[unitDefName].id] = tier
end
Expand Down

0 comments on commit e7653c5

Please sign in to comment.