summaryrefslogtreecommitdiff
path: root/src/localplayer.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/localplayer.cpp')
-rw-r--r--src/localplayer.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/localplayer.cpp b/src/localplayer.cpp
index 7cf26cd44..2497e09f9 100644
--- a/src/localplayer.cpp
+++ b/src/localplayer.cpp
@@ -124,7 +124,7 @@ LocalPlayer::LocalPlayer(int id, int subtype):
{
logger->log1("LocalPlayer::LocalPlayer");
- listen(CHANNEL_ATTRIBUTES);
+ listen(Mana::CHANNEL_ATTRIBUTES);
mLevel = 1;
mAwayListener = new AwayListener();
@@ -1547,11 +1547,11 @@ void LocalPlayer::optionChanged(const std::string &value)
mShowJobExp = config.getBoolValue("showJobExp");
}
-void LocalPlayer::event(Channels channel, const Mana::Event &event)
+void LocalPlayer::event(Mana::Channels channel, const Mana::Event &event)
{
- if (channel == CHANNEL_ATTRIBUTES)
+ if (channel == Mana::CHANNEL_ATTRIBUTES)
{
- if (event.getName() == EVENT_UPDATEATTRIBUTE)
+ if (event.getName() == Mana::EVENT_UPDATEATTRIBUTE)
{
switch (event.getInt("id"))
{
@@ -1574,7 +1574,7 @@ void LocalPlayer::event(Channels channel, const Mana::Event &event)
break;
};
}
- else if (event.getName() == EVENT_UPDATESTAT)
+ else if (event.getName() == Mana::EVENT_UPDATESTAT)
{
if (!mShowJobExp)
return;