From 1b3a7da834365def09ec6c99f1321316d63b7326 Mon Sep 17 00:00:00 2001 From: Krausus Date: Mon, 25 May 2015 07:33:51 -0400 Subject: [PATCH] Fixes runtime when attaching unbranded robolimbs And yes, it's not possible to get branded robolimbs yet, so this meant all robolimbs were runtiming. --- code/modules/organs/organ_external.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/organs/organ_external.dm b/code/modules/organs/organ_external.dm index 9fa3f6e0b60..bda5d115064 100644 --- a/code/modules/organs/organ_external.dm +++ b/code/modules/organs/organ_external.dm @@ -769,7 +769,7 @@ Note that amputating the affected organ does in fact remove the infection from t /obj/item/organ/external/robotize(var/company) ..() - if(company) + if(company && istext(company)) model = company var/datum/robolimb/R = all_robolimbs[company] if(R)