summaryrefslogtreecommitdiff
path: root/src/net/ea
diff options
context:
space:
mode:
authorJared Adams <jaxad0127@gmail.com>2009-07-14 13:51:46 -0600
committerJared Adams <jaxad0127@gmail.com>2009-07-14 13:51:46 -0600
commitdf52e6b900600709ab0069daacf06093c61667b1 (patch)
tree45992865781aeca25c3263475b201beb4c372d7f /src/net/ea
parentcc0878202c99c896f98918b219253eddcf9abf53 (diff)
downloadmana-df52e6b900600709ab0069daacf06093c61667b1.tar.gz
mana-df52e6b900600709ab0069daacf06093c61667b1.tar.bz2
mana-df52e6b900600709ab0069daacf06093c61667b1.tar.xz
mana-df52e6b900600709ab0069daacf06093c61667b1.zip
Merge and cleanup more stuff
Diffstat (limited to 'src/net/ea')
-rw-r--r--src/net/ea/playerhandler.cpp4
-rw-r--r--src/net/ea/playerhandler.h4
2 files changed, 4 insertions, 4 deletions
diff --git a/src/net/ea/playerhandler.cpp b/src/net/ea/playerhandler.cpp
index 9eecc445..9b4c56e2 100644
--- a/src/net/ea/playerhandler.cpp
+++ b/src/net/ea/playerhandler.cpp
@@ -431,7 +431,7 @@ void PlayerHandler::emote(int emoteId)
outMsg.writeInt8(emoteId);
}
-void PlayerHandler::increaseStat(LocalPlayer::Attribute attr)
+void PlayerHandler::increaseAttribute(size_t attr)
{
MessageOut outMsg(CMSG_STAT_UPDATE_REQUEST);
@@ -464,7 +464,7 @@ void PlayerHandler::increaseStat(LocalPlayer::Attribute attr)
outMsg.writeInt8(1);
}
-void PlayerHandler::decreaseStat(LocalPlayer::Attribute attr)
+void PlayerHandler::decreaseAttribute(size_t attr)
{
// Supported by eA?
}
diff --git a/src/net/ea/playerhandler.h b/src/net/ea/playerhandler.h
index dcf53f6f..7312dacf 100644
--- a/src/net/ea/playerhandler.h
+++ b/src/net/ea/playerhandler.h
@@ -39,9 +39,9 @@ class PlayerHandler : public MessageHandler, public Net::PlayerHandler
void emote(int emoteId);
- void increaseStat(LocalPlayer::Attribute attr);
+ void increaseAttribute(size_t attr);
- void decreaseStat(LocalPlayer::Attribute attr);
+ void decreaseAttribute(size_t attr);
void increaseSkill(int skillId);