SCENERY additions

This commit is contained in:
Applevangelist 2024-01-21 16:45:48 +01:00
parent d5322466e9
commit b03add80c6
2 changed files with 2 additions and 2 deletions

View File

@ -3207,7 +3207,7 @@ function PLAYERTASKCONTROLLER:_ActiveTaskInfo(Task, Group, Client)
local islasing = self.LasingDrone:IsLasing() == true and yes or no local islasing = self.LasingDrone:IsLasing() == true and yes or no
local prectext = self.gettext:GetEntry("POINTERTARGETREPORT",self.locale) local prectext = self.gettext:GetEntry("POINTERTARGETREPORT",self.locale)
prectext = string.format(prectext,inreach,islasing) prectext = string.format(prectext,inreach,islasing)
text = text .. prectext.."("..self.LaserCode..")" text = text .. prectext.." ("..self.LaserCode..")"
end end
end end
-- Buddylasing -- Buddylasing

View File

@ -1107,7 +1107,7 @@ function TARGET:GetTargetLife(Target)
elseif Target.Type==TARGET.ObjectType.SCENERY then elseif Target.Type==TARGET.ObjectType.SCENERY then
if Target.Object and Target.Object:IsAlive() then if Target.Object and Target.Object:IsAlive(25) then
local life = Target.Object:GetLife() local life = Target.Object:GetLife()
return life return life
else else