Mimes french kiss now activates the SM (#85011)

## About The Pull Request
Before if you blew a kiss at the sm as a mime it did nothing and crashed
into it
now it activates the sm like a normal kiss
## Why It's Good For The Game
if your a mime setting up a sm and there is no power
you can activate it using your kiss
## Changelog
🆑
fix: Mimes french kisses now activate the sm
/🆑

---------

Co-authored-by: Ghom <42542238+Ghommie@users.noreply.github.com>
This commit is contained in:
BumbertoEko
2024-09-10 17:37:59 +00:00
committed by GitHub
co-authored by Ghom
parent 023bfd0e5d
commit ed69858ed7
@@ -13,11 +13,11 @@
return NONE
var/kiss_power = 0
switch(projectile.type)
if(/obj/projectile/kiss)
kiss_power = 60
if(/obj/projectile/kiss/death)
kiss_power = 20000
if (istype(projectile, /obj/projectile/kiss/death))
kiss_power = 20000
else if (istype(projectile, /obj/projectile/kiss))
kiss_power = 60
if(!istype(projectile.firer, /obj/machinery/power/emitter))
investigate_log("has been hit by [projectile] fired by [key_name(projectile.firer)]", INVESTIGATE_ENGINE)