summaryrefslogtreecommitdiff
path: root/src/elements/aray.cpp
diff options
context:
space:
mode:
authorSimon Robertshaw <simon@hardwired.org.uk>2012-04-17 16:26:12 (GMT)
committer Simon Robertshaw <simon@hardwired.org.uk>2012-04-17 16:26:12 (GMT)
commitfe5ae5e7928a8b6f9d51ba6d53b1be1444e12b9b (patch)
treed4b3be69f19570992f8e57a71a55660aac5f5709 /src/elements/aray.cpp
parentb88a2f680e638d7fbf396482b567ca5b6a7314f6 (diff)
downloadpowder-fe5ae5e7928a8b6f9d51ba6d53b1be1444e12b9b.zip
powder-fe5ae5e7928a8b6f9d51ba6d53b1be1444e12b9b.tar.gz
TPT: Make ARAY fire once per spark 72a4358eee
Diffstat (limited to 'src/elements/aray.cpp')
-rw-r--r--src/elements/aray.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/elements/aray.cpp b/src/elements/aray.cpp
index dd4a80b..844b549 100644
--- a/src/elements/aray.cpp
+++ b/src/elements/aray.cpp
@@ -11,7 +11,7 @@ int update_ARAY(UPDATE_FUNC_ARGS) {
r = pmap[y+ry][x+rx];
if (!r)
continue;
- if ((r&0xFF)==PT_SPRK && parts[r>>8].life>0 && parts[r>>8].life<4) {
+ if ((r&0xFF)==PT_SPRK && parts[r>>8].life==3) {
int destroy = (parts[r>>8].ctype==PT_PSCN)?1:0;
int nostop = (parts[r>>8].ctype==PT_INST)?1:0;
for (docontinue = 1, nxx = 0, nyy = 0, nxi = rx*-1, nyi = ry*-1; docontinue; nyy+=nyi, nxx+=nxi) {