summaryrefslogtreecommitdiffstats
path: root/src/game-server/commandhandler.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/game-server/commandhandler.cpp')
-rw-r--r--src/game-server/commandhandler.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game-server/commandhandler.cpp b/src/game-server/commandhandler.cpp
index c93aeee..5abd722 100644
--- a/src/game-server/commandhandler.cpp
+++ b/src/game-server/commandhandler.cpp
@@ -1772,7 +1772,7 @@ static void handleListAbility(Entity *player, std::string &args)
{
const AbilityValue &info = it->second;
std::stringstream str;
- str << info.abilityInfo->id << ": " << info.abilityInfo->setName << "/"
+ str << info.abilityInfo->id << ": " << info.abilityInfo->categoryName << "/"
<< info.abilityInfo->name << " charge: " << info.currentPoints;
say(str.str(), player);
}