Changes

m
no edit summary
Line 49: Line 49:  
     local los = ship:los() or 0
 
     local los = ship:los() or 0
 
     local los_max = ship:los_max() or los
 
     local los_max = ship:los_max() or los
     los = math.floor(los + ((los_max - los) * tonumber(entry[3]) / 99))
+
     if self._args["use_los"] then
 +
        los = tonumber(entry[3])
 +
    else
 +
        los = math.floor(los + ((los_max - los) * tonumber(entry[3]) / 99))
 +
    end
 
     self._elos = self._elos + math.sqrt(los) * 1.69
 
     self._elos = self._elos + math.sqrt(los) * 1.69
 
end
 
end
48

edits