summaryrefslogtreecommitdiff
path: root/src/being/being.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/being/being.cpp')
-rw-r--r--src/being/being.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/being/being.cpp b/src/being/being.cpp
index 1362c904a..947e98fb6 100644
--- a/src/being/being.cpp
+++ b/src/being/being.cpp
@@ -587,7 +587,7 @@ void Being::setSpeech(const std::string &text, const std::string &channel,
void Being::takeDamage(Being *const attacker,
const int amount,
- const AttackType::Type type,
+ const AttackTypeT type,
const int attackId,
const int level)
{
@@ -770,7 +770,7 @@ void Being::takeDamage(Being *const attacker,
}
int Being::getHitEffect(const Being *const attacker,
- const AttackType::Type type,
+ const AttackTypeT type,
const int attackId,
const int level) const
{
@@ -850,7 +850,7 @@ int Being::getHitEffect(const Being *const attacker,
return hitEffectId;
}
-int Being::getDefaultEffectId(const AttackType::Type &type)
+int Being::getDefaultEffectId(const AttackTypeT &type)
{
if (type == AttackType::MISS)
return paths.getIntValue("missEffectId");