From e13951256e5122613cb5c82674c57b4898744895 Mon Sep 17 00:00:00 2001 From: GryllsAddons <107083057+GryllsAddons@users.noreply.github.com> Date: Mon, 6 Mar 2023 19:56:57 +0000 Subject: [PATCH] Fix: Attempt to concatenate global 'MBB_Version' (a nil value) MBB_Version is unable to get data from .toc file as the name has changed from MMB.toc to MinimapButtonBag-TurtleWoW.toc --- MBB.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MBB.lua b/MBB.lua index 662a3db..409a518 100644 --- a/MBB.lua +++ b/MBB.lua @@ -1,4 +1,4 @@ -MBB_Version = GetAddOnMetadata("MBB", "Version"); +MBB_Version = GetAddOnMetadata("MinimapButtonBag-TurtleWoW", "Version"); MBB_DebugFlag = 0; MBB_DragFlag = 0; MBB_ShowTimeout = -1;