View Single Post
06-25-19, 03:56 PM   #4
Duman
A Murloc Raider
Join Date: Aug 2008
Posts: 9
Originally Posted by Duman View Post
I suppose a 1-liner to make a new SaveBindings() that calls AttemptToSaveBindings() will work for now
I ended up adding this code -- it might not be the most elegant, but it seems to do the trick?

Lua Code:
  1. if not SaveBindings then
  2.         function SaveBindings(p)
  3.                 AttemptToSaveBindings(p)
  4.         end
  5. end
  Reply With Quote