From 63dc2dc345ff24037614410163f9e88ca9746dce Mon Sep 17 00:00:00 2001 From: Segrain Date: Fri, 2 Aug 2013 19:09:54 +0300 Subject: [PATCH] Runtime error fix. --- code/modules/organs/organ.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/organs/organ.dm b/code/modules/organs/organ.dm index 8cf63f673cc..45828edc2aa 100644 --- a/code/modules/organs/organ.dm +++ b/code/modules/organs/organ.dm @@ -84,7 +84,7 @@ broken = 1 //Moving around with fractured ribs won't do you any good - if (broken && internal_organs && prob(15)) + if (broken && E.internal_organs && prob(15)) if (!lying && world.timeofday - l_move_time < 15) var/datum/organ/internal/I = pick(E.internal_organs) custom_pain("You feel broken bones moving in your [E.display_name]!", 1)