summaryrefslogtreecommitdiff
path: root/src/gui/windows/skilldialog.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/windows/skilldialog.cpp')
-rw-r--r--src/gui/windows/skilldialog.cpp8
1 files changed, 4 insertions, 4 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: