Skip to content

Commit

Permalink
Merge pull request #97 from marchc1/fix-radio-fuses
Browse files Browse the repository at this point in the history
Fixes radio fuse overcompensation
  • Loading branch information
TwistedTail authored Jul 22, 2024
2 parents ee9b9ef + a27f0bc commit 4a7ff0e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lua/acf/entities/fuzes/radio.lua
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@ else

if not Target then return false end

return (Missile.Position + Missile.LastVel):Distance(Target) <= self.Distance
return Missile.Position:Distance(Target) <= self.Distance
end
end

0 comments on commit 4a7ff0e

Please sign in to comment.