Skip to content

Commit

Permalink
specially for antonij
Browse files Browse the repository at this point in the history
  • Loading branch information
LiquidPotroh committed Oct 30, 2024
1 parent 047a5ae commit 6bdaf2f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions code/modules/reagents/chemistry/reagents/toxins.dm
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@
return
if(!M.dna)
return //No robots, AIs, aliens, Ians or other mobs should be affected by this.
if(volume > 1 && ((method==REAGENT_TOUCH && prob(33)) || method==REAGENT_INGEST))
if(volume > 1 && ((method == REAGENT_TOUCH && prob(33)) || method == REAGENT_INGEST))
randmutb(M)
M.check_genes()

Expand Down Expand Up @@ -1285,7 +1285,7 @@

/datum/reagent/ants/reaction_mob(mob/living/M, method=REAGENT_TOUCH, volume) //NOT THE ANTS
if(iscarbon(M))
if(volume > 1 && (method == REAGENT_TOUCH || method==REAGENT_INGEST))
if(volume > 1 && (method == REAGENT_TOUCH || method == REAGENT_INGEST))
to_chat(M, "<span class='warning'>OH SHIT ANTS!!!!</span>")
M.emote("scream")
M.adjustBruteLoss(4)
Expand Down

0 comments on commit 6bdaf2f

Please sign in to comment.