From f15f789ff7e50b7ecb613bb9fe57f35adc976a52 Mon Sep 17 00:00:00 2001 From: lili-ffxi <40600148+lili-ffxi@users.noreply.github.com> Date: Sat, 19 Aug 2023 01:06:02 +0100 Subject: [PATCH] Update setbgm.lua A value of `0` effectively disables the music reproduction for the given type. Debated calling it "silence" or "disabled" but settled for "No Music" in the end. Also bumped version after this change and last PR by Funk. --- addons/setbgm/setbgm.lua | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/addons/setbgm/setbgm.lua b/addons/setbgm/setbgm.lua index 4a78255f8..f9ca9622a 100644 --- a/addons/setbgm/setbgm.lua +++ b/addons/setbgm/setbgm.lua @@ -31,7 +31,7 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --]] _addon.name = 'setbgm' -_addon.version = '1.3.0' +_addon.version = '1.3.2' _addon.command = 'setbgm' _addon.author = 'Seth VanHeulen (Acacia@Odin)' @@ -50,6 +50,7 @@ music_types = { } songs = { + [0] = 'No Music', [25]='The Voracious Resurgence', [26]='The Devoured', [27]='Enroaching Perils', [28]='The Destiny Destroyers', [29]="Devils' Delight", [30]="Sojourner", [31]='Black Stars Rise', [32]='All Smiles', [33]='Valhalla', [34]="We Are Vana'diel", [35]='Goddessspeed', [36]='Good Fortune', [37]='All-Consuming Chaos', [38]='Your Choice', [40]='Cloister of Time and Souls', [41]='Royal Wanderlust', [42]='Snowdrift Waltz', [43]='Troubled Shadows', [44]='Where Lords Rule Not', [45]='Summers Lost', [46]='Goddess Divine', [47]='Echoes of Creation', [48]='Main Theme', [49]='Luck of the Mog',