From af47580b20873fec205c5167111a35d2728ae367 Mon Sep 17 00:00:00 2001 From: Incoming Date: Tue, 1 Apr 2014 12:45:28 -0400 Subject: [PATCH] Humans Named John McClane can crawl through the vents. This helps increase realism and believability in our 2D spessman games. --- code/modules/mob/living/carbon/human/human.dm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/code/modules/mob/living/carbon/human/human.dm b/code/modules/mob/living/carbon/human/human.dm index 50a03307add..67fa2e18475 100644 --- a/code/modules/mob/living/carbon/human/human.dm +++ b/code/modules/mob/living/carbon/human/human.dm @@ -30,6 +30,9 @@ for(var/i=0;i<7;i++) // 2 for medHUDs and 5 for secHUDs hud_list += image('icons/mob/hud.dmi', src, "hudunknown") + if(real_name == "John McClane") + ventcrawler = 2 + ..() /mob/living/carbon/human/Destroy()