From 65893426ba30e2b2c0df2065e446f3e7f5f4bec5 Mon Sep 17 00:00:00 2001 From: Segrain Date: Wed, 5 Jun 2013 21:02:25 +0300 Subject: [PATCH] Bumping into firelocks in exosuit. --- code/game/machinery/doors/firedoor.dm | 7 +++++++ html/changelog.html | 8 ++++++++ 2 files changed, 15 insertions(+) diff --git a/code/game/machinery/doors/firedoor.dm b/code/game/machinery/doors/firedoor.dm index 9566cd6db4..58b838d555 100644 --- a/code/game/machinery/doors/firedoor.dm +++ b/code/game/machinery/doors/firedoor.dm @@ -57,6 +57,13 @@ return if(!density) return ..() + if(istype(AM, /obj/mecha)) + var/obj/mecha/mecha = AM + if (mecha.occupant) + var/mob/M = mecha.occupant + if(world.time - M.last_bumped <= 10) return //Can bump-open one airlock per second. This is to prevent popup message spam. + M.last_bumped = world.time + attack_hand(M) return 0 diff --git a/html/changelog.html b/html/changelog.html index 8b4178c2ac..f7cd3187c7 100644 --- a/html/changelog.html +++ b/html/changelog.html @@ -57,6 +57,14 @@ Stuff which is in development and not yet visible to players or just code relate (ie. code improvements for expandability, etc.) should not be listed here. They should be listed in the changelog upon commit though. Thanks. --> +
+

05.06.2013

+

Segrain updated:

+ +
+

6/5/13

Meyar updated: