From 90d90f357162d283b232da1aa32fd8d552b95e3a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mieszko=20J=C4=99drzejczak?= Date: Sun, 21 Feb 2016 18:48:54 +0100 Subject: [PATCH] Added files via upload --- code/modules/reagents/newchem/drinks.dm | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/code/modules/reagents/newchem/drinks.dm b/code/modules/reagents/newchem/drinks.dm index 20a996120d4..eeadd48a815 100644 --- a/code/modules/reagents/newchem/drinks.dm +++ b/code/modules/reagents/newchem/drinks.dm @@ -94,7 +94,7 @@ result = "alkasine" required_reagents = list("lube" = 1, "plasma" = 1, "fuel" = 1) result_amount = 3 - mix_message = "The chemicals mix to create a shiny, blue substance." + mix_message = "The chemicals mix to create shiny, blue substance." /datum/reagent/alkasine/on_mob_life(var/mob/living/M as mob, var/alien) if(!src.data) data = 1 @@ -108,8 +108,8 @@ M.dizziness += dizzy_adj. if(d >= slur_start) - if (!M:slurring) M:slurring = 1 - M:slurring += slurr_adj + if (!M.slurring) M.slurring = 1 + M.slurring += slurr_adj if(d >= brawl_start && ishuman(M)) var/mob/living/carbon/human/H = M F.teach(H,1) @@ -117,8 +117,8 @@ if(H.martial_art == F) F.remove(H) if(d >= confused_start && prob(33)) - if (!M:confused) M:confused = 1 - M.confused = max(M:confused+confused_adj,0) + if (!M.confused) M.confused = 1 + M.confused = max(M.confused+confused_adj,0) if (prob(20)) var/datum/effect/system/spark_spread/s = new /datum/effect/system/spark_spread s.set_up(3, 1, M) @@ -175,4 +175,4 @@ result_amount = 4 mix_message = "The ingredients mix into a dark brown substance." -// ROBOT ALCOHOL ENDS +// ROBOT ALCOHOL ENDS \ No newline at end of file