summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/gui/windows/skilldialog.cpp8
-rw-r--r--src/net/eathena/skillhandler.cpp2
2 files changed, 5 insertions, 5 deletions
diff --git a/src/gui/windows/skilldialog.cpp b/src/gui/windows/skilldialog.cpp
index 514bd101b..297bc0049 100644
--- a/src/gui/windows/skilldialog.cpp
+++ b/src/gui/windows/skilldialog.cpp
@@ -590,14 +590,14 @@ void SkillDialog::useSkill(const SkillInfo *const info)
const Being *const being = localPlayer->getTarget();
if (being)
{
- skillHandler->useBeing(info->level,
- info->id, being->getId());
+ skillHandler->useBeing(info->id,
+ info->level, being->getId());
}
break;
}
case SkillType::Self:
- skillHandler->useBeing(info->level,
- info->id, localPlayer->getId());
+ skillHandler->useBeing(info->id,
+ info->level, localPlayer->getId());
break;
case SkillType::Ground:
diff --git a/src/net/eathena/skillhandler.cpp b/src/net/eathena/skillhandler.cpp
index ba2fc8f8b..03dce353b 100644
--- a/src/net/eathena/skillhandler.cpp
+++ b/src/net/eathena/skillhandler.cpp
@@ -116,8 +116,8 @@ void SkillHandler::useBeing(const int id, const int level,
const int beingId) const
{
createOutPacket(CMSG_SKILL_USE_BEING);
- outMsg.writeInt16(static_cast<int16_t>(id), "skill id");
outMsg.writeInt16(static_cast<int16_t>(level), "skill level");
+ outMsg.writeInt16(static_cast<int16_t>(id), "skill id");
outMsg.writeInt32(beingId, "target id");
}