From 4cfb6d7d4ee6a94aa8c4e6cbe5eeaf44fd5e34ce Mon Sep 17 00:00:00 2001 From: "aranclanos@hotmail.com" Date: Wed, 9 Jan 2013 21:22:06 +0000 Subject: [PATCH] Runtime fix for trying to set the mental status of a person without medical record to "stable". I'm pretty sure it was a typo. git-svn-id: http://tgstation13.googlecode.com/svn/trunk@5505 316c924e-a436-60f5-8080-3fe189b3f50e --- code/game/machinery/computer/medical.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/machinery/computer/medical.dm b/code/game/machinery/computer/medical.dm index 1819e423dc..30a8b21f2e 100644 --- a/code/game/machinery/computer/medical.dm +++ b/code/game/machinery/computer/medical.dm @@ -298,7 +298,7 @@ if("watch") src.active1.fields["m_stat"] = "*Watch*" if("stable") - src.active2.fields["m_stat"] = "Stable" + src.active1.fields["m_stat"] = "Stable" if (href_list["b_type"])