From 23b374526674594d1561a9e03d3bc8684419b5a5 Mon Sep 17 00:00:00 2001 From: lbnesquik Date: Fri, 31 Aug 2018 06:29:28 +0200 Subject: [PATCH 1/2] Minor dogborg typo --- code/modules/mob/living/silicon/robot/dogborg/dog_modules_vr.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/silicon/robot/dogborg/dog_modules_vr.dm b/code/modules/mob/living/silicon/robot/dogborg/dog_modules_vr.dm index e723b4ee41d..a5d385a2dfd 100644 --- a/code/modules/mob/living/silicon/robot/dogborg/dog_modules_vr.dm +++ b/code/modules/mob/living/silicon/robot/dogborg/dog_modules_vr.dm @@ -205,7 +205,7 @@ if(do_after (user, 50)) water.add_charge(50) else if(water.energy < 5) - to_chat(user, "Your mouth feels dry.") + to_chat(user, "Your mouth feels dry. You should drink up some water .") return else if(istype(target,/obj/effect/decal/cleanable)) user.visible_message("[user] begins to lick off \the [target.name].", "You begin to lick off \the [target.name]...") From d17d19aa746561c7c0b058bf6758d5ac93492c0c Mon Sep 17 00:00:00 2001 From: lbnesquik Date: Fri, 31 Aug 2018 08:01:26 +0200 Subject: [PATCH 2/2] Dogborg QoL --- .../mob/living/silicon/robot/dogborg/dog_modules_vr.dm | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/code/modules/mob/living/silicon/robot/dogborg/dog_modules_vr.dm b/code/modules/mob/living/silicon/robot/dogborg/dog_modules_vr.dm index a5d385a2dfd..a4ceb1b67e1 100644 --- a/code/modules/mob/living/silicon/robot/dogborg/dog_modules_vr.dm +++ b/code/modules/mob/living/silicon/robot/dogborg/dog_modules_vr.dm @@ -177,6 +177,14 @@ ..() flags |= NOBLUDGEON //No more attack messages +/obj/item/device/dogborg/tongue/examine(user) + if(!..(user, 1)) + return + if(water.energy) + user <<"[src] is wet. Just like it should be." + if(water.energy < 5) + user <<"[src] is dry." + /obj/item/device/dogborg/tongue/attack_self(mob/user) var/mob/living/silicon/robot.R = user if(R.emagged || R.emag_items)