From 514cd253bc8a48ae18aae842e89da6c2fd9e510f Mon Sep 17 00:00:00 2001 From: patty21 Date: Mon, 9 Jun 2003 17:45:50 +0000 Subject: [PATCH] you can now only push if you're standing directly in front of it --- src/special.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/special.c b/src/special.c index 8e038fa..f04b1e7 100644 --- a/src/special.c +++ b/src/special.c @@ -101,6 +101,7 @@ special_push (int p_nr) y1, i; + if ((p->pos.x & 0xff) || (p->pos.y & 0xff)) {return;} switch (p->d) { case left: dx = -1;