diff --git a/addons/Pouches/Pouches.lua b/addons/Pouches/Pouches.lua index 815278f5cc..d935ad1868 100644 --- a/addons/Pouches/Pouches.lua +++ b/addons/Pouches/Pouches.lua @@ -58,9 +58,8 @@ end windower.register_event('addon command', function(...) local inv = windower.ffxi.get_items(0) -- get main inventory - local args = T{...}:map(string.lower) - item.name = table.concat(args," ") + item.name = windower.convert_auto_trans(table.concat({...}," ")):lower() item.count = 0 if inverted[item.name] == nil then log('Item, "'..item.name..'", does not exist.') diff --git a/addons/plugin_manager/README.md b/addons/plugin_manager/README.md index dc4cbd0c6b..f6822552da 100644 --- a/addons/plugin_manager/README.md +++ b/addons/plugin_manager/README.md @@ -26,4 +26,4 @@ ## Settings Files The settings file for Plugin Manager are found in a single XML file with a format similar to the settings files for plugins. -* `data/settings.xml` - contains plugins and addons specific to each character. is loaded if there is not a set of plugins/addons inside tags that are a case-sensitive match to the player's name. +* `data/settings.xml` - contains plugins and addons specific to each character. \ is loaded if there is not a set of plugins/addons inside tags that are a case-sensitive match to the player's name.