summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/terrain.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/terrain.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/terrain.cc')
-rw-r--r--crawl-ref/source/terrain.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/terrain.cc b/crawl-ref/source/terrain.cc
index aa4eba2335..86da9f5936 100644
--- a/crawl-ref/source/terrain.cc
+++ b/crawl-ref/source/terrain.cc
@@ -231,7 +231,7 @@ bool grid_is_trap(dungeon_feature_type grid, bool undiscovered_too)
{
return (grid == DNGN_TRAP_MECHANICAL || grid == DNGN_TRAP_MAGICAL
|| grid == DNGN_TRAP_NATURAL
- || (undiscovered_too && grid == DNGN_UNDISCOVERED_TRAP));
+ || undiscovered_too && grid == DNGN_UNDISCOVERED_TRAP);
}
bool grid_is_water(dungeon_feature_type grid)