From cce4f893aaba134210dee91ceeae8a070cb631c8 Mon Sep 17 00:00:00 2001 From: Chris Kaczor Date: Tue, 25 Nov 2025 11:01:01 -0500 Subject: [PATCH] Set TomTom to right zone and fix config command --- TillerTracker.lua | 10 +++++++--- TillerTracker.toc | 2 +- TillerTracker_Mists.toc | 2 +- 3 files changed, 9 insertions(+), 5 deletions(-) diff --git a/TillerTracker.lua b/TillerTracker.lua index bd796fe..504f856 100644 --- a/TillerTracker.lua +++ b/TillerTracker.lua @@ -330,10 +330,9 @@ local function Entry_OnMouseUp(frame, info, button) return end - local m = TomTom:GetCurrentPlayerPosition() local location = info["LOCATION"] - _G.TomTom:AddWaypoint(m, location[1] / 100, location[2] / 100, { title = info["NAME"] }) + _G.TomTom:AddWaypoint(376, location[1] / 100, location[2] / 100, { title = info["NAME"] }) end end @@ -714,7 +713,12 @@ function TillerTracker:ChatCommand(input) command = command:lower() if command == L["config"]:lower() then - InterfaceOptionsFrame_OpenToCategory(private.optionsFrame) + if Settings then + Settings.OpenToCategory("Tiller Tracker") + elseif InterfaceOptionsFrame_OpenToCategory then + InterfaceOptionsFrame_OpenToCategory("Tiller Tracker") + InterfaceOptionsFrame_OpenToCategory("Tiller Tracker") + end elseif command == L["minimap"]:lower() then private.db.global.minimap_icon.hide = not private.db.global.minimap_icon.hide TillerTracker:UpdateMinimapConfig() diff --git a/TillerTracker.toc b/TillerTracker.toc index e9b8f96..81a9c2b 100644 --- a/TillerTracker.toc +++ b/TillerTracker.toc @@ -1,6 +1,6 @@ ## Interface: 110205 ## Title: Tiller Tracker -## Version: 11.0.4 +## Version: 11.0.5 ## Notes: Helps with the daily Tiller food quests ("A Dish for...") by keeping track of what quests have been completed that day, how many dishes need to be cooked, and what materials are required. ## Author: Amanoa ## SavedVariables: TillerTrackerDB diff --git a/TillerTracker_Mists.toc b/TillerTracker_Mists.toc index c8092ac..76dbad6 100644 --- a/TillerTracker_Mists.toc +++ b/TillerTracker_Mists.toc @@ -1,6 +1,6 @@ ## Interface: 50500 ## Title: Tiller Tracker -## Version: 11.0.4 +## Version: 11.0.5 ## Notes: Helps with the daily Tiller food quests ("A Dish for...") by keeping track of what quests have been completed that day, how many dishes need to be cooked, and what materials are required. ## Author: Amanoa ## SavedVariables: TillerTrackerDB