Fallout fixes

This commit is contained in:
Applevangelist
2022-05-06 11:45:11 +02:00
parent ba4a8050ba
commit cc49791997
5 changed files with 9 additions and 6 deletions

View File

@@ -1160,7 +1160,7 @@ function GROUP:GetFuelAvg()
local TotalFuel = 0
for UnitID, UnitData in pairs( self:GetUnits() ) do
local Unit = UnitData -- Wrapper.Unit#UNIT
local UnitFuel = Unit:GetFuel()
local UnitFuel = Unit:GetFuel() or 0
self:F( { Fuel = UnitFuel } )
TotalFuel = TotalFuel + UnitFuel
end