changeset 24:4804892802fe

- fix mount bindings
author Nenue
date Sat, 30 Jul 2016 21:08:28 -0400
parents 0fb2dea6e716
children 74a70720f622
files SkeletonKey/ActionTypes.lua
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/SkeletonKey/ActionTypes.lua	Sat Jul 30 20:44:32 2016 -0400
+++ b/SkeletonKey/ActionTypes.lua	Sat Jul 30 21:08:28 2016 -0400
@@ -53,9 +53,9 @@
 --- Caps Lock
 atype['mount'] = function(id, name)
   if id == SUMMON_RANDOM_FAVORITE_MOUNT_SPELL then
-    return 'mount_random', "/script C_MountJournal.SummonByID(0)", CLICK_KEYBINDER_MACRO
+    return CLICK_KEYBINDER_MACRO, 'mount_random', "/script C_MountJournal.SummonByID(0)"
   else
-    return 'mount_'..id, "/script C_MountJournal.SummonByID("..id..")", CLICK_KEYBINDER_MACRO
+    return CLICK_KEYBINDER_MACRO, 'mount_'..id, "/script C_MountJournal.SummonByID("..id..")"
   end
 end