summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/traps.cc
diff options
context:
space:
mode:
authorj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2009-09-20 19:50:18 +0000
committerj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2009-09-20 19:50:18 +0000
commitcb57dfea1ea5e58d45f8f1d4378369bdaf975fe5 (patch)
tree24f6b63381415029b59b676329ddeec1e9f341dd /crawl-ref/source/traps.cc
parentbf3897048c960a93d6bc1485b32060868c955da1 (diff)
downloadcrawl-ref-cb57dfea1ea5e58d45f8f1d4378369bdaf975fe5.tar.gz
crawl-ref-cb57dfea1ea5e58d45f8f1d4378369bdaf975fe5.zip
* Fix wizmode autoexplore (used for debugging) not nuking traps, as it
claimed to do. * Fix post-berserk exhaustion not cancelling haste if not wearing the "RS. * Update change log. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@10752 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/traps.cc')
-rw-r--r--crawl-ref/source/traps.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/traps.cc b/crawl-ref/source/traps.cc
index 3203f672e7..39bcb433ed 100644
--- a/crawl-ref/source/traps.cc
+++ b/crawl-ref/source/traps.cc
@@ -87,8 +87,8 @@ void trap_def::destroy()
grd(this->pos) = DNGN_FLOOR;
this->ammo_qty = 0;
- this->pos = coord_def(-1,-1);
- this->type = TRAP_UNASSIGNED;
+ this->pos = coord_def(-1,-1);
+ this->type = TRAP_UNASSIGNED;
}
void trap_def::hide()