Skip to content

Commit

Permalink
fixes some missing smoke checks
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 c779099 commit cd02f42
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions code/modules/reagents/chemistry/reagents/alcohol_reagents.dm
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ All effects don't start immediately, but rather get worse over time; the rate is
if(!isliving(M))
return

if(method in list(TOUCH, VAPOR, PATCH))
if(method in list(TOUCH, SMOKE, VAPOR, PATCH))
M.adjust_fire_stacks(reac_volume / 15)

if(iscarbon(M))
Expand Down Expand Up @@ -2433,7 +2433,7 @@ All effects don't start immediately, but rather get worse over time; the rate is
glass_desc = "A spin on the classic. Artists and street fighters swear by this stuff."

/datum/reagent/consumable/ethanol/out_of_lime/expose_mob(mob/living/carbon/human/consumer, method=INGEST, reac_volume)
if(method == INGEST || method == TOUCH)
if(method == INGEST || method == TOUCH || method == SMOKE)
if(istype(consumer))
consumer.hair_color = pick("0ad","a0f","f73","d14","0b5","fc2","084","05e","d22","fa0")
consumer.facial_hair_color = pick("0ad","a0f","f73","d14","0b5","fc2","084","05e","d22","fa0")
Expand Down

0 comments on commit cd02f42

Please sign in to comment.