Skip to content

Commit

Permalink
Fixed a couple of LUA errors.
Browse files Browse the repository at this point in the history
Removed TBC support.
  • Loading branch information
Sentilix committed Sep 3, 2022
1 parent 7cb9153 commit 52ada41
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 17 deletions.
Binary file added Releases/Thaliz-3.1.4.zip
Binary file not shown.
5 changes: 5 additions & 0 deletions Thaliz/ReadMe.txt
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,11 @@ RIP Thaliz.

Thaliz Versions
---------------
Version 3.1.4
* Bugfix: Deathknight classname detection fixed.
* Bugfix: Fixed another LUA error when doing "/thaliz version".


Version 3.1.3
* Added command to reset the rez button position: "/thaliz resetbutton".
* Added support for Wrath of the Lich King Classic.
Expand Down
4 changes: 2 additions & 2 deletions Thaliz/Thaliz.lua
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ local EMOTE_GROUP_RACE = "Race";
-- classname, priority, spellname (translated runtime), spellID

local Thaliz_ClassMatrix = {
["DEATH KNIGHT"] = {
["DEATHKNIGHT"] = {
["class"] = "Death Knight",
["priority"] = 20,
["spellid"] = nil,
Expand Down Expand Up @@ -371,7 +371,7 @@ SlashCmdList["THALIZ_VERSION"] = function(msg)
if IsInRaid() or A:isInParty() then
A:sendAddonMessage("TX_VERSION##");
else
A:echo(string.format("%s is using Thaliz version %s", a.localPlayerName, A.addonVersion));
A:echo(string.format("%s is using Thaliz version %s", A.localPlayerName, A.addonVersion));
end
end

Expand Down
2 changes: 1 addition & 1 deletion Thaliz/Thaliz.toc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## Title: Thaliz - One-button resurrection (TBC)
## Notes: Smart addon to handle ressing party / raid members
## Version: 3.1.3
## Version: 3.1.4
## Author: Mimma @ <EU-Pyrewood Village>
## Interface: 30400
## SavedVariables: Thaliz_Options
Expand Down
Binary file modified Thaliz/Thaliz.wowproj
Binary file not shown.
2 changes: 1 addition & 1 deletion Thaliz/Thaliz_Retail.toc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## Title: Thaliz - One-button resurrection
## Notes: Smart addon to handle ressing party / raid members
## Version: 3.1.3
## Version: 3.1.4
## Author: Mimma @ <EU-Pyrewood Village>
## Interface: 90205
## SavedVariables: Thaliz_Options
Expand Down
13 changes: 0 additions & 13 deletions Thaliz/Thaliz_TBC.toc

This file was deleted.

0 comments on commit 52ada41

Please sign in to comment.