Skip to content

Commit

Permalink
Merge pull request #102 from Astralcircle/dev
Browse files Browse the repository at this point in the history
Fix lua error
  • Loading branch information
thecraftianman authored Jan 23, 2025
2 parents 2b36823 + 613286f commit 049ac4f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion lua/entities/acf_missile/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -616,7 +616,9 @@ function ENT:Detonate(Destroyed)
return Fuze:HandleDetonation(self, BulletData)
end

Debug.Line(BulletData.Pos, BulletData.Pos + BulletData.Flight, 10, Color(255, 128, 0))
if BulletData.Pos then
Debug.Line(BulletData.Pos, BulletData.Pos + BulletData.Flight, 10, Color(255, 128, 0))
end

BulletData.DetonatorAngle = 91

Expand Down

0 comments on commit 049ac4f

Please sign in to comment.