summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/tilecell.h
diff options
context:
space:
mode:
authorMichael Gagno <evilmike@gmail.com>2012-07-03 02:48:00 -0700
committerMichael Gagno <evilmike@gmail.com>2012-07-03 02:48:00 -0700
commita86d5194b1f9ece1c597e17a464f0f7d808d650b (patch)
tree9d46df6f091ebb304bcfb9087ec3e0cf130f05ff /crawl-ref/source/tilecell.h
parentab58638c90c94c31eec8fc93e979037c999ecf13 (diff)
downloadcrawl-ref-a86d5194b1f9ece1c597e17a464f0f7d808d650b.tar.gz
crawl-ref-a86d5194b1f9ece1c597e17a464f0f7d808d650b.zip
Rename swamp trees to mangroves.
Since these are opaque (and therefore behave differently from normal trees), a renaming is warranted.
Diffstat (limited to 'crawl-ref/source/tilecell.h')
-rw-r--r--crawl-ref/source/tilecell.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/crawl-ref/source/tilecell.h b/crawl-ref/source/tilecell.h
index 6dd5bb9383..cd3949a1c6 100644
--- a/crawl-ref/source/tilecell.h
+++ b/crawl-ref/source/tilecell.h
@@ -30,7 +30,7 @@ struct packed_cell
bool glowing_mold;
bool is_sanctuary;
bool is_liquefied;
- bool swamp_tree_water;
+ bool mangrove_water;
uint8_t orb_glow;
char blood_rotation;
bool old_blood;
@@ -41,7 +41,7 @@ struct packed_cell
packed_cell() : num_dngn_overlay(0), fg(0), bg(0), is_bloody(false),
is_silenced(false), is_suppressed(false), halo(HALO_NONE),
is_moldy(false), glowing_mold(false), is_sanctuary(false),
- is_liquefied(false), swamp_tree_water(false), orb_glow(0),
+ is_liquefied(false), mangrove_water(false), orb_glow(0),
blood_rotation(0), old_blood(false) {}
packed_cell(const packed_cell* c) : num_dngn_overlay(c->num_dngn_overlay),
@@ -54,7 +54,7 @@ struct packed_cell
glowing_mold(c->glowing_mold),
is_sanctuary(c->is_sanctuary),
is_liquefied(c->is_liquefied),
- swamp_tree_water(c->swamp_tree_water),
+ mangrove_water(c->mangrove_water),
orb_glow(c->orb_glow),
blood_rotation(c->blood_rotation),
old_blood(c->old_blood) {}