mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-26 14:39:58 +01:00
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:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user