From 1aed482d7dcb4cf668eaf1a337d274ca82db6895 Mon Sep 17 00:00:00 2001 From: Repede Date: Tue, 1 Sep 2020 23:16:25 -0400 Subject: [PATCH] Fixes some M << to to_chat references. --- .../mob/living/silicon/robot/dogborg/dog_modules_yw.dm | 2 +- code/modules/power/power.dm | 2 +- code/modules/reagents/kelshark.dm | 5 ++--- code/modules/vore/fluffstuff/MadokaSpear.dm | 2 +- 4 files changed, 5 insertions(+), 6 deletions(-) diff --git a/code/modules/mob/living/silicon/robot/dogborg/dog_modules_yw.dm b/code/modules/mob/living/silicon/robot/dogborg/dog_modules_yw.dm index 1a7903f637..01d74bbd14 100644 --- a/code/modules/mob/living/silicon/robot/dogborg/dog_modules_yw.dm +++ b/code/modules/mob/living/silicon/robot/dogborg/dog_modules_yw.dm @@ -45,6 +45,6 @@ icontype = options[choice] var/active_sound = 'sound/effects/bubbles.ogg' playsound(src.loc, "[active_sound]", 100, 0, 4) - M << "Your Tank now displays [choice]. Drink up and enjoy!" + to_chat(M, "Your Tank now displays [choice]. Drink up and enjoy!") updateicon() return 1 diff --git a/code/modules/power/power.dm b/code/modules/power/power.dm index 5ea4fe4224..2f9deb3a76 100644 --- a/code/modules/power/power.dm +++ b/code/modules/power/power.dm @@ -312,7 +312,7 @@ //Phorochemistry DM: Allows chemicalresistant shocking -Radiantflash for(var/datum/reagent/phororeagent/R in M.reagents.reagent_list) if(R.id == "fulguracin") - M << "Your hairs stand up, but you resist the shock for the most part" + to_chat(M, "Your hairs stand up, but you resist the shock for the most part") return 0 //no shock for you //Checks again. If we are still here subject will be shocked, trigger standard 20 tick warning diff --git a/code/modules/reagents/kelshark.dm b/code/modules/reagents/kelshark.dm index 757e935b51..fd4972b414 100644 --- a/code/modules/reagents/kelshark.dm +++ b/code/modules/reagents/kelshark.dm @@ -1,6 +1,5 @@ datum reagent -// Shamelessly ripped from Y.W., with large changes. -Carl benzilate name = "Odd Goo" id = "benzilate" @@ -22,11 +21,11 @@ datum switch(data["count"]) if(1 to 30) if(prob(9)) M.emote("me",1,"blushes") - if(prob(9)) M << "You feel so needy.." + if(prob(9)) to_chat(M, "You feel so needy..") if (30 to INFINITY) if(prob(3)) M.emote("me",1,"blushes") if(prob(5)) M.say("!moans out lewdly!") - if(prob(9)) M << "You can't help but want to touch yourself then and now!" + if(prob(9)) to_chat(M, "You can't help but want to touch yourself then and now!") data["count"]++ holder.remove_reagent(src.id, 0.2) //..() diff --git a/code/modules/vore/fluffstuff/MadokaSpear.dm b/code/modules/vore/fluffstuff/MadokaSpear.dm index c5fea3d376..7b0611ff31 100644 --- a/code/modules/vore/fluffstuff/MadokaSpear.dm +++ b/code/modules/vore/fluffstuff/MadokaSpear.dm @@ -42,7 +42,7 @@ /obj/item/weapon/oldtwohanded/mob_can_equip(M as mob, slot) //Cannot equip wielded items. if(wielded) - M << "Unwield the [initial(name)] first!" + to_chat(M, "Unwield the [initial(name)] first!") return 0 return ..()