From 86afc5565c2dbd056a58d75961f14a2fc21017d6 Mon Sep 17 00:00:00 2001 From: Ludovicus Date: Wed, 2 Dec 2020 14:04:58 -0500 Subject: [PATCH] Allow larger ranges for playeroffset and cursoroffset. --- TomTom_Config.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/TomTom_Config.lua b/TomTom_Config.lua index e7e1883..adbb574 100755 --- a/TomTom_Config.lua +++ b/TomTom_Config.lua @@ -577,7 +577,7 @@ local function createconfig() type = "range", name = L["Player coordinate offset"], desc = L["Coordinates can be slid from the default location, to accomodate other addons. This setting allows you to control that offset"], - min = -16, max = 48, step = 1, + min = -16, max = 256, step = 1, arg = "mapcoords.playeroffset", }, }, @@ -608,7 +608,7 @@ local function createconfig() type = "range", name = L["Cursor coordinate offset"], desc = L["Coordinates can be slid from the default location, to accomodate other addons. This setting allows you to control that offset"], - min = -32, max = 64, step = 1, + min = -32, max = 128, step = 1, arg = "mapcoords.cursoroffset", }, }, -- 1.7.9.5