Skip to content

Commit

Permalink
typo'd
Browse files Browse the repository at this point in the history
  • Loading branch information
DeltaFire15 committed Sep 4, 2024
1 parent 91ca03c commit 99c099a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/modules/projectiles/projectile.dm
Original file line number Diff line number Diff line change
Expand Up @@ -820,7 +820,7 @@

/obj/item/projectile/proc/process_homing() //Nsv13 - Enhanced the performance of this entire proc.
if(QDELETED(homing_target)) //NSV13 - Changed proc to be less performance intensive
if(homing_target) //Bla bla refclearing. Necessary evil. (Probably not worth the hassle of handling this via comsig so this here instead)
if(homing_target) //Bla bla refclearing. Necessary evil. (Probably not worth the hassle of handling this via comsig, so this is here instead)
homing_target = null
return FALSE //Hi, Delta from the past here, future one. We don't just disable homing entirely here because some projectiles might be able to reassess targets.
var/targetAngle
Expand Down

0 comments on commit 99c099a

Please sign in to comment.