From d37f0886592e56b8cae17d765cbfe095b3a09b9b Mon Sep 17 00:00:00 2001 From: David Mitchell Date: Thu, 21 Dec 2023 23:56:57 +0000 Subject: [PATCH] Fixed issue with addon not initialising if reloaded --- Balloon.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Balloon.lua b/Balloon.lua index 1537459..170b2c3 100644 --- a/Balloon.lua +++ b/Balloon.lua @@ -1,6 +1,6 @@ addon.name = 'balloon' addon.author = 'Originally by Hando, English support added by Yuki & Kenshi, themes added by Ghosty, ported to Ashita v4 by onimitch.' -addon.version = '4.0.1' +addon.version = '4.0.2' addon.desc = 'Displays NPC chat logs in a UI Balloon, similar to FFXIV.' addon.link = 'https://github.com/onimitch/ffxi-balloon-ashitav4' @@ -575,7 +575,7 @@ ashita.events.register('load', 'balloon_load', function() balloon.settings = settings.load(default_settings) balloon.last_frame_time = os.clock() - -- balloon.initialize() + balloon.initialize() -- Register for future settings updates settings.register('settings', 'balloon_settings_update', function(s)