Thread Tools Display Modes
06-25-19, 03:24 PM   #1
Duman
A Murloc Raider
Join Date: Aug 2008
Posts: 9
Classic Beta 1.13.2 build 30901 -- SaveBindings() removed??

Hey all,

Has anyone else noticed a bug or other issue w/ build 30901, where SaveBindings() doesn't seem to exist any more? Trying to call it (with either '1' or '2') just results in UI error (claiming SaveBindings is a nil value -- i.e. undefined).

This worked fine until this build.

I can't even do a simple:
Code:
/script SaveBindings(1)
Granted, this was happening to me yesterday, and servers are down right now, so perhaps they are fixing things... Just curious if I was the only one that had experienced this.

(Mainly noticed it when trying to use Dominos to set/save some new keybinds I was trying to use on a new toon)
  Reply With Quote
06-25-19, 03:47 PM   #2
Fizzlemizz
I did that?
 
Fizzlemizz's Avatar
Premium Member
AddOn Author - Click to view addons
Join Date: Dec 2011
Posts: 1,871
This was pointed out yesterday. I don't have beta so ...

AttemptToSaveBindings
__________________
Fizzlemizz
Maintainer of Discord Unit Frames and Discord Art.
Author of FauxMazzle, FauxMazzleHUD and Move Pad Plus.
  Reply With Quote
06-25-19, 03:51 PM   #3
Duman
A Murloc Raider
Join Date: Aug 2008
Posts: 9
Originally Posted by Fizzlemizz View Post
AttemptToSaveBindings
Oh good grief... I suppose a 1-liner to make a new SaveBindings() that calls AttemptToSaveBindings() will work for now :-P

Is that git repo generally kept up-to-date? I did a very quick/brief search to see if I could find a dump of the latest Blizz code, and failed (Again, I didn't try too hard)
  Reply With Quote
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
06-25-19, 03:58 PM   #5
Fizzlemizz
I did that?
 
Fizzlemizz's Avatar
Premium Member
AddOn Author - Click to view addons
Join Date: Dec 2011
Posts: 1,871
You should always be able to export the current build yourself.
__________________
Fizzlemizz
Maintainer of Discord Unit Frames and Discord Art.
Author of FauxMazzle, FauxMazzleHUD and Move Pad Plus.
  Reply With Quote
06-25-19, 04:13 PM   #6
Duman
A Murloc Raider
Join Date: Aug 2008
Posts: 9
Originally Posted by Fizzlemizz View Post
You should always be able to export the current build yourself.
Ah, nice - thx
  Reply With Quote

WoWInterface » Developer Discussions » Tutorials & Other Helpful Info. » Classic Beta 1.13.2 build 30901 -- SaveBindings() removed??

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off