Deprecate the stream operator

This commit is contained in:
Arokha Sieyes
2020-02-12 19:38:43 -05:00
committed by Leshana
parent c8a8987610
commit 47ccc655db
762 changed files with 4492 additions and 4464 deletions
+3 -3
View File
@@ -29,11 +29,11 @@
if(inflamed == 1)
if(prob(5))
owner << "<span class='warning'>You feel a stinging pain in your abdomen!</span>"
to_chat(owner, "<span class='warning'>You feel a stinging pain in your abdomen!</span>")
owner.emote("me", 1, "winces slightly.")
if(inflamed > 1)
if(prob(3))
owner << "<span class='warning'>You feel a stabbing pain in your abdomen!</span>"
to_chat(owner, "<span class='warning'>You feel a stabbing pain in your abdomen!</span>")
owner.emote("me", 1, "winces painfully.")
owner.adjustToxLoss(1)
if(inflamed > 2)
@@ -41,7 +41,7 @@
owner.vomit()
if(inflamed > 3)
if(prob(1))
owner << "<span class='danger'>Your abdomen is a world of pain!</span>"
to_chat(owner, "<span class='danger'>Your abdomen is a world of pain!</span>")
owner.Weaken(10)
var/obj/item/organ/external/groin = owner.get_organ(BP_GROIN)