Harden AoE Loot integration and documentation

This commit is contained in:
2026-09-01 18:03:43 +02:00
parent 8e66a4b297
commit 66be31dbdb
3 changed files with 15 additions and 2 deletions
+1
View File
@@ -41,6 +41,7 @@ Settings: **Esc → Advanced Options**.
## 🔷 Mods using ClassicAPI directly
- Actionbar Range Color
- AoE Loot
- Auto Dismount
- Chat Tweaks
- Equip Compare
+13
View File
@@ -50,6 +50,19 @@ A verbatim copy of the upstream license document is preserved in
does not relicense ShaguTweaks-ClassicAPI under the GPL and does not imply that
ClassicAPI binaries or source are distributed as part of this addon.
## AoELoot
`mods/aoe-loot.lua` is adapted from the standalone AoELoot addon provided to
the project by Sandrea:
- Original addon title: `AoELoot`
- Original metadata credit: Sandrea / ChatGPT
- Adapted module: `mods/aoe-loot.lua`
The supplied package did not include an upstream URL or a separate license
file. This notice records the known provenance and preserves attribution; it
does not infer additional licensing terms.
## SuperWoW
SuperWoW is an optional external runtime dependency/fallback used by some
+1 -2
View File
@@ -4,7 +4,7 @@ local T = ShaguTweaks.T
local module = ShaguTweaks:register({
title = T["AoE Loot"],
description = T["Automatically loots all nearby corpses using ClassicAPI. Leaves Master Loot untouched."],
description = T["Automatically loots all nearby corpses using ClassicAPI without confirmation prompts. Leaves Master Loot untouched."],
expansions = { ["vanilla"] = true },
category = T["Loot"],
enabled = nil,
@@ -43,7 +43,6 @@ module.enable = function(self)
end
local function QueueAoELoot()
pending = false
releaseDeadline = 0
frame:SetScript("OnUpdate", StartAoELoot)
end