From 7c87f6c7b7e1fbee5a519feb9441ecf41b4cf370 Mon Sep 17 00:00:00 2001 From: silicons <2003111+silicons@users.noreply.github.com> Date: Mon, 28 Jun 2021 13:17:55 -0700 Subject: [PATCH] sigh --- code/modules/mob/living/silicon/silicon_defense.dm | 2 +- code/modules/reagents/chemistry/reagents/drug_reagents.dm | 4 ++-- code/modules/reagents/chemistry/reagents/medicine_reagents.dm | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/code/modules/mob/living/silicon/silicon_defense.dm b/code/modules/mob/living/silicon/silicon_defense.dm index 39d1d38ba7..3c55432b23 100644 --- a/code/modules/mob/living/silicon/silicon_defense.dm +++ b/code/modules/mob/living/silicon/silicon_defense.dm @@ -91,7 +91,7 @@ "You punch [src], but don't leave a dent.") /mob/living/silicon/proc/shove_act(mob/living/carbon/human/H) - visible_message(span_danger("[M] shoves [src], but doesn't manage to make much of an effect.")) + visible_message(span_danger("[H] shoves [src], but doesn't manage to make much of an effect.")) /mob/living/silicon/attack_drone(mob/living/simple_animal/drone/M) if(M.a_intent == INTENT_HARM) diff --git a/code/modules/reagents/chemistry/reagents/drug_reagents.dm b/code/modules/reagents/chemistry/reagents/drug_reagents.dm index 1f92b3c3ee..6385532f44 100644 --- a/code/modules/reagents/chemistry/reagents/drug_reagents.dm +++ b/code/modules/reagents/chemistry/reagents/drug_reagents.dm @@ -169,7 +169,7 @@ color = "#FAFAFA" overdose_threshold = 20 metabolization_rate = 0.75 * REAGENTS_METABOLISM - ph = 5 + pH = = 5 addiction_threshold = 10 value = REAGENT_VALUE_UNCOMMON @@ -185,7 +185,7 @@ var/high_message = pick("You feel hyper.", "You feel like you need to go faster.", "You feel like you can run the world.") if(DT_PROB(2.5, delta_time)) to_chat(M, span_notice("[high_message]")) - SEND_SIGNAL(M, COMSIG_ADD_MOOD_EVENT, "tweaking", /datum/mood_event/stimulant_medium, name) + // SEND_SIGNAL(M, COMSIG_ADD_MOOD_EVENT, "tweaking", /datum/mood_event/stimulant_medium, name) M.AdjustStun(-40 * REM * delta_time) M.AdjustKnockdown(-40 * REM * delta_time) M.AdjustUnconscious(-40 * REM * delta_time) diff --git a/code/modules/reagents/chemistry/reagents/medicine_reagents.dm b/code/modules/reagents/chemistry/reagents/medicine_reagents.dm index 6ce9b0c9bb..71bc6ae607 100644 --- a/code/modules/reagents/chemistry/reagents/medicine_reagents.dm +++ b/code/modules/reagents/chemistry/reagents/medicine_reagents.dm @@ -729,7 +729,7 @@ return TRUE /datum/reagent/medicine/ephedrine/overdose_process(mob/living/M, delta_time, times_fired) - if(DT_PROB(1 * normalise_creation_purity(), delta_time) && iscarbon(M)) + if(DT_PROB(1, delta_time) && iscarbon(M)) var/datum/disease/D = new /datum/disease/heart_failure M.ForceContractDisease(D) to_chat(M, span_userdanger("You're pretty sure you just felt your heart stop for a second there.."))