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/autocontrol/autoabils.lua
Original file line number Diff line number Diff line change
Expand Up @@ -70,4 +70,4 @@ windower.register_event("action", function(act)
local abil = abil_ID - 256
windower.send_command('@timers c "'..autoabils[abil].name..'" '..autoabils[abil].recast..' up')
end
end)
end)
10 changes: 9 additions & 1 deletion addons/autocontrol/autocontrol.lua
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
]]

_addon.name = 'autocontrol'
_addon.version = '2.0.3'
_addon.version = '2.0.4'
_addon.author = 'Nitrous (Shiva)'
_addon.commands = {'autocontrol','acon'}

Expand Down Expand Up @@ -295,3 +295,11 @@ windower.register_event('addon command', function(comm, ...)
log(' show/hide - toggles visibility of the tracker so you can make changes.')
end
end)

windower.register_event("job change", function(main_job_id)
if main_job_id == 18 and settings.burdentracker then
burden_hud:show()
else
burden_hud:hide()
end
end)
1 change: 0 additions & 1 deletion addons/autocontrol/burden.lua
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,6 @@ function updaters.maneuver(self, type)
burden.threshold = burden.threshold + thresholdModifiers[item.id]
end
end
windower.add_to_chat(4, self[type])
end

function updaters.ice(self) updaters.maneuver(self, "ice") end
Expand Down
2 changes: 1 addition & 1 deletion addons/autocontrol/readme.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
**Author:** Ricky Gall
**Version:** 2.0.3
**Version:** 2.0.4
**Description:**
Addon to make setting automaton attachments easier. Currently only works as pup main. Includes burden tracker.

Expand Down