summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/statuseffect.cpp18
-rw-r--r--src/statuseffect.h11
2 files changed, 0 insertions, 29 deletions
diff --git a/src/statuseffect.cpp b/src/statuseffect.cpp
index 97ce131ab..591b70815 100644
--- a/src/statuseffect.cpp
+++ b/src/statuseffect.cpp
@@ -111,7 +111,6 @@ std::string StatusEffect::getAction() const
typedef std::map<int, StatusEffect *> status_effect_map[2];
static status_effect_map statusEffects;
-static status_effect_map stunEffects;
static std::map<int, int> blockEffectIndexMap;
int StatusEffect::blockEffectIndexToEffectIndex(const int blockIndex)
@@ -138,17 +137,6 @@ StatusEffect *StatusEffect::getStatusEffect(const int index,
return nullptr;
}
-StatusEffect *StatusEffect::getStunEffect(const int index,
- const Enable enabling)
-{
- std::map<int, StatusEffect *> &effects
- = stunEffects[enabling == Enable_true];
- const std::map<int, StatusEffect *>::iterator it = effects.find(index);
- if (it != effects.end())
- return (*it).second;
- return nullptr;
-}
-
void StatusEffect::load()
{
if (mLoaded)
@@ -195,10 +183,6 @@ void StatusEffect::loadXmlFile(const std::string &fileName)
if (index >= 0 && block_index >= 0)
blockEffectIndexMap[block_index] = index;
}
- else if (xmlNameEqual(node, "stun-effect"))
- {
- the_map = &stunEffects;
- }
if (the_map)
{
@@ -268,8 +252,6 @@ void StatusEffect::unload()
unloadMap(statusEffects[0]);
unloadMap(statusEffects[1]);
- unloadMap(stunEffects[0]);
- unloadMap(stunEffects[1]);
mLoaded = false;
}
diff --git a/src/statuseffect.h b/src/statuseffect.h
index 9539e4224..698a33bd0 100644
--- a/src/statuseffect.h
+++ b/src/statuseffect.h
@@ -106,17 +106,6 @@ class StatusEffect final
A_WARN_UNUSED;
/**
- * Retrieves a stun effect.
- *
- * \param index Index of the stun effect.
- * \param enabling Whether to retrieve the activating effect (true) or
- * the deactivating effect (false).
- */
- static StatusEffect *getStunEffect(const int index,
- const Enable enabling)
- A_WARN_UNUSED;
-
- /**
* Maps a block effect index to its corresponding effect index. Block
* effect indices are used for opt2/opt3/status.option blocks; their
* mapping to regular effect indices is handled in the config file.