Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion addons/organizer/items.lua
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ local bags = {}
local item_tab = {}

do
local names = {'Nomad Moogle', 'Pilgrim Moogle'}
local names = {'Nomad Moogle'} -- don't add Pilgrim Moogle to this list, organizer currently does not work in Odyssey.
local moogles = {}
local poked = false
local block_menu = false
Expand Down
4 changes: 2 additions & 2 deletions addons/organizer/organizer.lua
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ packets = require('packets')

_addon.name = 'Organizer'
_addon.author = 'Byrth, maintainer: Rooks'
_addon.version = 0.20210610
_addon.version = 0.20210721
_addon.commands = {'organizer','org'}

_static = {
Expand Down Expand Up @@ -306,7 +306,7 @@ windower.register_event('addon command',function(...)
end

if moogle then
clear_moogle()
clear_moogles()
org_debug("command", "Clearing '" .. moogle .. "' status")
end

Expand Down
3 changes: 2 additions & 1 deletion addons/scoreboard/scoreboard.lua
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

_addon.name = 'Scoreboard'
_addon.author = 'Suji'
_addon.version = '1.12'
_addon.version = '1.13'
_addon.commands = {'sb', 'scoreboard'}

require('tables')
Expand Down Expand Up @@ -69,6 +69,7 @@ end

-- Handle addon args
windower.register_event('addon command', function()
-- Hi Max, the way I see it, is you should have taken Rub's suggestion.
local chatmodes = S{'s', 'l', 'l2', 'p', 't', 'say', 'linkshell', 'linkshell2', 'party', 'tell'}

return function(command, ...)
Expand Down