From 38e080261c453938c5b32deb69dbeb9a8c93ef37 Mon Sep 17 00:00:00 2001 From: DuvelCorp Date: Sun, 6 Sep 2026 21:59:29 +0200 Subject: [PATCH] Fix rank-0 pet spell icons (Bubble Barrier, Charge); finalize 1.5.2 changelog; ignore Copilot data --- .gitignore | 5 +++++ CHANGELOG.md | 4 +++- data/ds-pet-spells.lua | 8 ++++---- 3 files changed, 12 insertions(+), 5 deletions(-) diff --git a/.gitignore b/.gitignore index 07377a9..0f5ed70 100644 --- a/.gitignore +++ b/.gitignore @@ -13,3 +13,8 @@ LOCALIZATION*.md # Dev tooling — Python generators, data processing scripts, scratch files # Not part of the addon, never ship this .tools/ + +# GitHub Copilot — never sync Copilot data to GitHub +.copilot/ +.github/copilot-instructions.md +**/copilot-* diff --git a/CHANGELOG.md b/CHANGELOG.md index 4a9b9a9..d0d585f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,7 +3,7 @@ All notable changes to MetaHunt will be documented in this file. -## [1.5.2] - [Unreleased] +## [1.5.2] - 2026-04-08 ### Added @@ -12,6 +12,8 @@ All notable changes to MetaHunt will be documented in this file. ### Fixed +- **ds-pet-spells — wrong rank 0 icons**: Rank 0 (triggered/sub-spell) entries for Bubble Barrier and Charge had incorrect icons (`Spell_Frost_FrostNova` and `Ability_Warrior_Charge` respectively) instead of matching their ranked ability icons (`spell_bubl1` and `Ability_Hunter_Pet_Boar`). Fixed in both `allSpells` and `byAbility` sections. + - **zCraft — Smelting**: Smeling was previously not appearing in zCraft because incorrectly hardcoded as "Mining", this is fixed. diff --git a/data/ds-pet-spells.lua b/data/ds-pet-spells.lua index 3660b74..718fcba 100644 --- a/data/ds-pet-spells.lua +++ b/data/ds-pet-spells.lua @@ -198,7 +198,7 @@ MTH_DS_PetSpells = { ["effects"] = { "(2) School Damage (Frost) Value: 15 Radius: 10 yards", }, - ["icon"] = "Spell_Frost_FrostNova", + ["icon"] = "spell_bubl1", ["id"] = 36527, ["name"] = "Bubble Barrier", ["range"] = "0 yards (Self Only)", @@ -299,7 +299,7 @@ MTH_DS_PetSpells = { "(96) Charge", "(58) Weapon Damage + Value: 75", }, - ["icon"] = "Ability_Warrior_Charge", + ["icon"] = "Ability_Hunter_Pet_Boar", ["id"] = 22120, ["name"] = "Charge", ["range"] = "8-25 yards (Charge)", @@ -2013,7 +2013,7 @@ MTH_DS_PetSpells = { ["effects"] = { "(2) School Damage (Frost) Value: 15 Radius: 10 yards", }, - ["icon"] = "Spell_Frost_FrostNova", + ["icon"] = "spell_bubl1", ["id"] = 36527, ["name"] = "Bubble Barrier", ["range"] = "0 yards (Self Only)", @@ -2121,7 +2121,7 @@ MTH_DS_PetSpells = { "(96) Charge", "(58) Weapon Damage + Value: 75", }, - ["icon"] = "Ability_Warrior_Charge", + ["icon"] = "Ability_Hunter_Pet_Boar", ["id"] = 22120, ["name"] = "Charge", ["range"] = "8-25 yards (Charge)",