From cead3c1f03ef2d3a4c12742f25263d001ad8b5b8 Mon Sep 17 00:00:00 2001
From: Ryll-Ryll <3589655+Ryll-Ryll@users.noreply.github.com>
Date: Mon, 20 Jul 2020 22:45:33 -0400
Subject: [PATCH] deepest lore
---
code/datums/wounds/cuts.dm | 12 ++++++++++++
1 file changed, 12 insertions(+)
diff --git a/code/datums/wounds/cuts.dm b/code/datums/wounds/cuts.dm
index 5f9d7542386..568e0a84305 100644
--- a/code/datums/wounds/cuts.dm
+++ b/code/datums/wounds/cuts.dm
@@ -141,6 +141,18 @@
to_chat(user, "You're already interacting with [victim]!")
return
+ if(user.is_mouth_covered())
+ to_chat(user, "Your mouth is covered, you can't lick [victim]'s wounds!")
+ return
+
+ if(!user.getorganslot(ORGAN_SLOT_TONGUE))
+ to_chat(user, "You can't lick wounds without a tongue!") // f in chat
+ return
+
+ // transmission is one way patient -> felinid since google said cat saliva is antiseptic or whatever, and also because felinids are already risking getting beaten for this even without people suspecting they're spreading a deathvirus
+ for(var/datum/disease/D in victim.diseases)
+ user.ForceContractDisease(D)
+
user.visible_message("[user] begins licking the wounds on [victim]'s [limb.name].", "You begin licking the wounds on [victim]'s [limb.name]...", ignored_mobs=victim)
to_chat(victim, "[user] begins to lick the wounds on your [limb.name].