projects
/
rocksndiamonds.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
63f0577
)
rnd-20040225-2-src
author
Holger Schemel
<info@artsoft.org>
Wed, 25 Feb 2004 22:00:43 +0000
(23:00 +0100)
committer
Holger Schemel
<info@artsoft.org>
Sat, 30 Aug 2014 08:46:01 +0000
(10:46 +0200)
src/conftime.h
patch
|
blob
|
history
src/game.c
patch
|
blob
|
history
diff --git
a/src/conftime.h
b/src/conftime.h
index c9837ac13bc5906e94e7ceb54aeeffbdec3f359a..f4add647841db1da13e11b3078d3c97694b7f941 100644
(file)
--- a/
src/conftime.h
+++ b/
src/conftime.h
@@
-1
+1
@@
-#define COMPILE_DATE_STRING "[2004-02-25
03:06
]"
+#define COMPILE_DATE_STRING "[2004-02-25
10:57
]"
diff --git
a/src/game.c
b/src/game.c
index 02eb0df91c098eb6a837efd7f5bfa705e42b012e..cd919a2b3406687e2110a8c10123d032718c662f 100644
(file)
--- a/
src/game.c
+++ b/
src/game.c
@@
-2653,10
+2653,15
@@
void Explode(int ex, int ey, int phase, int mode)
int yy = y - ey + 1;
int element;
+#if 1
+ if (!IN_LEV_FIELD(x, y) || (mode != EX_NORMAL && (x != ex || y != ey)))
+ continue;
+#else
if (!IN_LEV_FIELD(x, y) ||
((mode != EX_NORMAL || center_element == EL_AMOEBA_TO_DIAMOND) &&
(x != ex || y != ey)))
continue;
+#endif
element = Feld[x][y];