ink kisses now delete the spawned projectile (#88981)

## About The Pull Request

If you ink kissed a obj there would be a floating ink spit as it did not
delete the projectile. This is now fixed

## Why It's Good For The Game

bugg

## Changelog

🆑
fix: ink kisses now delete the spawned projectile
/🆑
This commit is contained in:
carlarctg
2025-01-11 20:30:59 +01:00
committed by GitHub
parent 798f2aca06
commit d4f0da89ec
+2
View File
@@ -660,6 +660,8 @@
. = ..()
var/obj/projectile/ink_spit/ink_spit = new (target)
ink_spit.on_hit(target)
if(!QDELETED(ink_spit)) // in case it somehow remains around
qdel(ink_spit)
// Based on energy gun characteristics
/obj/projectile/kiss/syndie