summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/fineff.h
diff options
context:
space:
mode:
authorDracoOmega <draco_omega@live.com>2013-02-19 17:15:16 -0330
committerDavid Lawrence Ramsey <dolorous@users.sourceforge.net>2013-02-21 03:08:48 -0600
commit4975cdf967574de934774f0f0cb52fc60a76aba4 (patch)
treef30f9fe0cbcf8e278881aed47d312a3bad8fd98a /crawl-ref/source/fineff.h
parentf7b5349e03d234b46ccb4924c586ab3015ae9d14 (diff)
downloadcrawl-ref-4975cdf967574de934774f0f0cb52fc60a76aba4.tar.gz
crawl-ref-4975cdf967574de934774f0f0cb52fc60a76aba4.zip
Rename kraken_damage_fineff to deferred_damage_fineff
There was nothing specific to kraken in the code, and there are other cases where this fineffect might be useful.
Diffstat (limited to 'crawl-ref/source/fineff.h')
-rw-r--r--crawl-ref/source/fineff.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/fineff.h b/crawl-ref/source/fineff.h
index 1664dac4b4..2525c0e14f 100644
--- a/crawl-ref/source/fineff.h
+++ b/crawl-ref/source/fineff.h
@@ -121,10 +121,10 @@ protected:
int blood;
};
-class kraken_damage_fineff : public final_effect
+class deferred_damage_fineff : public final_effect
{
public:
- kraken_damage_fineff(const actor *attack, const actor *defend, int dam)
+ deferred_damage_fineff(const actor *attack, const actor *defend, int dam)
: final_effect(attack, defend, coord_def()), damage(dam)
{
}