diff options
author | Erik Schilling <ablu.erikschilling@googlemail.com> | 2012-04-03 13:35:18 +0200 |
---|---|---|
committer | Erik Schilling <ablu.erikschilling@googlemail.com> | 2012-04-04 16:28:11 +0200 |
commit | 3a05c2d4e4f2229516182ebceea880d227b65708 (patch) | |
tree | d3a93585e55f1cac9a188ee0bb73b77a1db820d0 /src/resources/specialdb.cpp | |
parent | 31010d6d3ba6600860a9f6dd925ac3d8e3f2c830 (diff) | |
download | mana-3a05c2d4e4f2229516182ebceea880d227b65708.tar.gz mana-3a05c2d4e4f2229516182ebceea880d227b65708.tar.bz2 mana-3a05c2d4e4f2229516182ebceea880d227b65708.tar.xz mana-3a05c2d4e4f2229516182ebceea880d227b65708.zip |
Synced specials to latest manaserv changes
Reviewed-by: bjorn.
Diffstat (limited to 'src/resources/specialdb.cpp')
-rw-r--r-- | src/resources/specialdb.cpp | 15 |
1 files changed, 4 insertions, 11 deletions
diff --git a/src/resources/specialdb.cpp b/src/resources/specialdb.cpp index 5dac2e6c..426a1143 100644 --- a/src/resources/specialdb.cpp +++ b/src/resources/specialdb.cpp @@ -34,14 +34,11 @@ namespace SpecialInfo::TargetMode SpecialDB::targetModeFromString(const std::string& str) { - if (str=="self") return SpecialInfo::TARGET_SELF; - else if (str=="friend") return SpecialInfo::TARGET_FRIEND; - else if (str=="enemy") return SpecialInfo::TARGET_ENEMY; - else if (str=="being") return SpecialInfo::TARGET_BEING; + if (str=="being") return SpecialInfo::TARGET_BEING; else if (str=="point") return SpecialInfo::TARGET_POINT; logger->log("SpecialDB: Warning, unknown target mode \"%s\"", str.c_str() ); - return SpecialInfo::TARGET_SELF; + return SpecialInfo::TARGET_BEING; } void SpecialDB::load() @@ -80,13 +77,9 @@ void SpecialDB::load() info->name = XML::getProperty(special, "name", ""); info->icon = XML::getProperty(special, "icon", ""); - info->isActive = XML::getBoolProperty(special, "active", false); - info->targetMode = targetModeFromString(XML::getProperty(special, "target", "self")); + info->targetMode = targetModeFromString(XML::getProperty(special, "target", "being")); - info->level = XML::getProperty(special, "level", -1); - info->hasLevel = info->level > -1; - - info->hasRechargeBar = XML::getBoolProperty(special, "recharge", false); + info->rechargeable = XML::getBoolProperty(special, "rechargeable", true); info->rechargeNeeded = 0; info->rechargeCurrent = 0; |