Skip to content

Commit

Permalink
Fix Billy dealing wrong outer ring damage (FAForever#6256)
Browse files Browse the repository at this point in the history
  • Loading branch information
lL1l1 authored Jun 14, 2024
1 parent 726ca39 commit 2d1a3e2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions changelog/snippets/fix.6256.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
- (#6256) Fix billy nuke dealing 25 outer damage instead of 250.
2 changes: 1 addition & 1 deletion projectiles/TIFMissileNukeCDR/TIFMissileNukeCDR_Script.lua
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ TIFMissileNukeCDR = ClassProjectile(TIFTacticalNuke) {
local InnerRing = self.InnerRing
local OuterRing = self.OuterRing
DamageArea(instigator, cachedPosition, InnerRing.Radius, InnerRing.Damage, 'Normal', true, true)
DamageArea(instigator, cachedPosition, OuterRing.Radius, OuterRing.Radius, 'Normal', true, true)
DamageArea(instigator, cachedPosition, OuterRing.Radius, OuterRing.Damage, 'Normal', true, true)
end,
}
TypeClass = TIFMissileNukeCDR

0 comments on commit 2d1a3e2

Please sign in to comment.