Skip to content

Commit

Permalink
smoke changes
Browse files Browse the repository at this point in the history
Signed-off-by: tmtmtl30 <[email protected]>
  • Loading branch information
tmtmtl30 authored Sep 30, 2023
1 parent acb4774 commit 80d95f7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions code/modules/reagents/chemistry/reagents/other_reagents.dm
Original file line number Diff line number Diff line change
Expand Up @@ -750,7 +750,7 @@
taste_description = "slime"

/datum/reagent/aslimetoxin/expose_mob(mob/living/L, method=TOUCH, reac_volume)
if(method != TOUCH || method != SMOKE)
if(method != TOUCH && method != SMOKE)
L.ForceContractDisease(new /datum/disease/transformation/slime(), FALSE, TRUE)

/datum/reagent/gluttonytoxin
Expand Down Expand Up @@ -998,7 +998,7 @@
taste_description = "bitterness"

/datum/reagent/space_cleaner/sterilizine/expose_mob(mob/living/carbon/C, method=TOUCH, reac_volume)
if(method in list(TOUCH, VAPOR, PATCH))
if(method in list(TOUCH, VAPOR, PATCH, SMOKE))
for(var/s in C.surgeries)
var/datum/surgery/S = s
S.speed_modifier = max(0.2, S.speed_modifier)
Expand Down

0 comments on commit 80d95f7

Please sign in to comment.