mirror of
https://github.com/KabKebab/GS13.git
synced 2026-07-12 00:20:55 +01:00
adds back moth eating
This commit is contained in:
@@ -1999,12 +1999,12 @@ datum/reagent/consumable/ethanol/creme_de_coconut
|
||||
|
||||
/datum/reagent/consumable/ethanol/bug_spray/on_mob_life(mob/living/carbon/M)
|
||||
//Bugs should not drink Bug spray.
|
||||
if(ismoth(M) || isflyperson(M))
|
||||
if(ismoth(M) || isflyperson(M) || isinsect(M))
|
||||
M.adjustToxLoss(1,0)
|
||||
return ..()
|
||||
|
||||
/datum/reagent/consumable/ethanol/bug_spray/on_mob_add(mob/living/carbon/M)
|
||||
if(ismoth(M) || isflyperson(M))
|
||||
if(ismoth(M) || isflyperson(M) || isinsect(M))
|
||||
M.emote("scream")
|
||||
return ..()
|
||||
|
||||
@@ -2396,4 +2396,4 @@ datum/reagent/consumable/ethanol/creme_de_coconut
|
||||
/datum/reagent/consumable/ethanol/hotlime_miami/on_mob_life(mob/living/carbon/M)
|
||||
M.set_drugginess(50)
|
||||
M.adjustStaminaLoss(-2)
|
||||
return ..()
|
||||
return ..()
|
||||
|
||||
Reference in New Issue
Block a user