summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/actor.h
diff options
context:
space:
mode:
authorNeil Moore <neil@s-z.org>2014-07-05 22:15:46 -0400
committerNeil Moore <neil@s-z.org>2014-07-05 22:21:28 -0400
commit3e46231ba3de33c9f1d67845f9a74600ac0d26f6 (patch)
treeec2a1af143bb8054d902b65a5e09e1d220cd5c5d /crawl-ref/source/actor.h
parent3d2a0df9fdb6e46349e48701897ec4acec95a548 (diff)
downloadcrawl-ref-3e46231ba3de33c9f1d67845f9a74600ac0d26f6.tar.gz
crawl-ref-3e46231ba3de33c9f1d67845f9a74600ac0d26f6.zip
Remove unused parameters from umbra() and backlit().
Diffstat (limited to 'crawl-ref/source/actor.h')
-rw-r--r--crawl-ref/source/actor.h7
1 files changed, 2 insertions, 5 deletions
diff --git a/crawl-ref/source/actor.h b/crawl-ref/source/actor.h
index edbf24c717..6c3dda5bf6 100644
--- a/crawl-ref/source/actor.h
+++ b/crawl-ref/source/actor.h
@@ -342,15 +342,12 @@ public:
virtual bool caught() const = 0;
virtual bool asleep() const { return false; }
- // check_haloed: include halo
// self_halo: include own halo (actually if self_halo = false
// and has a halo, returns false; so if you have a
// halo you're not affected by others' halos for this
// purpose)
- virtual bool backlit(bool check_haloed = true,
- bool self_halo = true) const = 0;
- virtual bool umbra(bool check_haloed = true,
- bool self_halo = true) const = 0;
+ virtual bool backlit(bool self_halo = true) const = 0;
+ virtual bool umbra() const = 0;
// Within any actor's halo?
virtual bool haloed() const;
// Within an umbra?