summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/travel.h
diff options
context:
space:
mode:
authorNeil Moore <neil@s-z.org>2013-11-15 17:53:17 -0500
committerNeil Moore <neil@s-z.org>2013-11-15 17:53:17 -0500
commit32c45a74182eceb672cbe0018c2328c4f9a22876 (patch)
tree5d16f4b7d6568e71f4286acb82fbd0b4a832ce19 /crawl-ref/source/travel.h
parente7b96ffa70ca93a3cea9e2cead6f40085a6a2d68 (diff)
downloadcrawl-ref-32c45a74182eceb672cbe0018c2328c4f9a22876.tar.gz
crawl-ref-32c45a74182eceb672cbe0018c2328c4f9a22876.zip
Manually fix a few more instances of return (...)
These weren't caught by util/unbrace because they weren't at the beginning of the line.
Diffstat (limited to 'crawl-ref/source/travel.h')
-rw-r--r--crawl-ref/source/travel.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/travel.h b/crawl-ref/source/travel.h
index 2e0df0f626..8a1d2783f6 100644
--- a/crawl-ref/source/travel.h
+++ b/crawl-ref/source/travel.h
@@ -317,7 +317,7 @@ public:
string describe() const;
- bool can_travel() const { return (type == PHYSICAL); }
+ bool can_travel() const { return type == PHYSICAL; }
};
// Information on a level that interlevel travel needs.