We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4171190 commit 1ba14eeCopy full SHA for 1ba14ee
modules/game_quickloot/quickloot.lua
@@ -61,6 +61,9 @@ function quickLootController:onGameStart()
61
end
62
63
function quickLootController:onGameEnd()
64
+ if not g_game.getFeature(GameThingQuickLoot) then
65
+ return
66
+ end
67
QuickLoot.save()
68
QuickLoot.toggle()
69
if quickLootController.ui:isVisible() then
@@ -177,7 +180,7 @@ function QuickLoot.Define()
177
180
end)
178
181
179
182
if not status then
- return g_logger.error("Error while saving top bar settings. Data won't be saved. Details: " .. result)
183
+ return g_logger.warning("Error while saving QuickLoot settings. Data won't be saved. Details: " .. result)
184
185
186
if result:len() > 104857600 then
0 commit comments