rnd-20060530-2-src
authorHolger Schemel <info@artsoft.org>
Tue, 30 May 2006 21:59:08 +0000 (23:59 +0200)
committerHolger Schemel <info@artsoft.org>
Sat, 30 Aug 2014 08:51:59 +0000 (10:51 +0200)
src/conftime.h
src/game.c

index a4f17902cc715da039e254919f9c996eae2d63f5..3271393a0f7bb3f5264637a89a638a06a59151a2 100644 (file)
@@ -1 +1 @@
-#define COMPILE_DATE_STRING "[2006-05-30 21:20]"
+#define COMPILE_DATE_STRING "[2006-05-30 23:57]"
index 837d41036992abab6a31ddacf701f4de7c409f49..7c6b4cff32b706903613c8f86259be98d5aef095 100644 (file)
@@ -11861,6 +11861,21 @@ int DigField(struct PlayerInfo *player,
       if (!player->key[EM_GATE_GRAY_ACTIVE_NR(element)])
        return MP_NO_ACTION;
     }
+    else if (IS_EMC_GATE(element))
+    {
+      if (!player->key[EMC_GATE_NR(element)])
+       return MP_NO_ACTION;
+    }
+    else if (IS_EMC_GATE_GRAY(element))
+    {
+      if (!player->key[EMC_GATE_GRAY_NR(element)])
+       return MP_NO_ACTION;
+    }
+    else if (IS_EMC_GATE_GRAY_ACTIVE(element))
+    {
+      if (!player->key[EMC_GATE_GRAY_ACTIVE_NR(element)])
+       return MP_NO_ACTION;
+    }
     else if (IS_SP_PORT(element))
     {
       if (element == EL_SP_GRAVITY_PORT_LEFT ||