summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/transfor.cc
diff options
context:
space:
mode:
authorVsevolod Kozlov <zaba@thorium.homeunix.org>2009-11-05 19:42:01 +0300
committerRobert Vollmert <rvollmert@gmx.net>2009-11-05 18:50:57 +0100
commitde162132f702a4723cc9390d8c83baa012844161 (patch)
tree920b26fe8ea60d7d0225d59435f49f7e6e90d3d5 /crawl-ref/source/transfor.cc
parentcf225c256f67b33f96a04c243f7c88ba23168664 (diff)
downloadcrawl-ref-de162132f702a4723cc9390d8c83baa012844161.tar.gz
crawl-ref-de162132f702a4723cc9390d8c83baa012844161.zip
Replace uses of player_is_swimming with you.swimming.
Signed-off-by: Robert Vollmert <rvollmert@gmx.net>
Diffstat (limited to 'crawl-ref/source/transfor.cc')
-rw-r--r--crawl-ref/source/transfor.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/transfor.cc b/crawl-ref/source/transfor.cc
index b2b2bec286..3127308325 100644
--- a/crawl-ref/source/transfor.cc
+++ b/crawl-ref/source/transfor.cc
@@ -532,7 +532,7 @@ bool transform(int pow, transformation_type which_trans, bool force,
return (false);
}
- if (you.species == SP_MERFOLK && player_is_swimming()
+ if (you.species == SP_MERFOLK && you.swimming()
&& which_trans != TRAN_DRAGON && which_trans != TRAN_BAT)
{
// This might be overkill, but it's okay because obviously
@@ -672,7 +672,7 @@ bool transform(int pow, transformation_type which_trans, bool force,
symbol = 'D';
colour = GREEN;
dur = std::min(20 + random2(pow) + random2(pow), 100);
- if (you.species == SP_MERFOLK && player_is_swimming())
+ if (you.species == SP_MERFOLK && you.swimming())
{
msg = "You fly out of the water as you turn into "
"a fearsome dragon!";