Skip to content

Commit

Permalink
doubletaps
Browse files Browse the repository at this point in the history
  • Loading branch information
AnywayFarus committed Oct 20, 2023
1 parent b526231 commit 63049c9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions modular_skyrat/modules/cellguns/code/medigun_cells.dm
Original file line number Diff line number Diff line change
Expand Up @@ -368,7 +368,7 @@
name = "clotting agent shot"

/obj/projectile/energy/medical/utility/clotting/on_hit(mob/living/target, blocked = 0, pierce_hit)
. = ..()
. = ..()
if(!IsLivingHuman(target))
return FALSE

Expand All @@ -388,7 +388,7 @@
name = "temperature adjustment shot"

/obj/projectile/energy/medical/utility/temperature/on_hit(mob/living/target, blocked = 0, pierce_hit)
. = ..()
. = ..()
if(!IsLivingHuman(target))
return FALSE

Expand All @@ -411,7 +411,7 @@
name = "hardlight surgical gown field"

/obj/projectile/energy/medical/utility/gown/on_hit(mob/living/target, blocked = 0, pierce_hit)
. = ..()
. = ..()
if(!istype(target, /mob/living/carbon/human)) //Dead check isn't fully needed, since it'd be reasonable for this to work on corpses.

Check failure on line 415 in modular_skyrat/modules/cellguns/code/medigun_cells.dm

View workflow job for this annotation

GitHub Actions / Run Linters

inconsistent indentation: 1 % 3 != 0

Check failure on line 415 in modular_skyrat/modules/cellguns/code/medigun_cells.dm

View workflow job for this annotation

GitHub Actions / Run Linters

got '!', expected one of: ')', ',', '...', '/', identifier
return

Expand Down

0 comments on commit 63049c9

Please sign in to comment.