Skip to content

Commit 61ecec0

Browse files
committed
updates
1 parent f257c08 commit 61ecec0

3 files changed

Lines changed: 15 additions & 6 deletions

File tree

Character.lua

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -349,7 +349,11 @@ function Character:GetProfile()
349349
end
350350

351351
function Character:SetTalents(spec, talents)
352-
self.data.talents[spec] = talents;
352+
if (#talents > 0) then
353+
self.data.talents[spec] = talents;
354+
else
355+
--print("talents", spec, "no data")
356+
end
353357
end
354358

355359
function Character:GetTalents(spec)
@@ -360,7 +364,12 @@ end
360364

361365

362366
function Character:SetGlyphs(spec, glyphs)
363-
self.data.glyphs[spec] = glyphs;
367+
368+
if (#glyphs > 0) then
369+
self.data.glyphs[spec] = glyphs;
370+
else
371+
--print("glyphs", spec, "no data")
372+
end
364373
end
365374

366375
function Character:GetGlyphs(spec)

Guildbook.toc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
## Interface: 30400
22
## Author: Copperbolts (Theboringdad)
3-
## Version: 5.53
3+
## Version: 5.54
44
## Title: Guildbook
55
## Notes: Guild addon for guild stuff!
66
## Notes-deDE : Gilden-Addon für alles rund um die Gilde!

Locales.lua

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ You should open your tradeskills and character frame so Guildbook can scan vario
5858
5959
Its also worth going to the profile section and setting your characters specializations and selecting your main (if you play alts).
6060
61-
UPDATES 5.53
61+
UPDATES 5.54
6262
6363
- added a type check before looking for crafters of an item
6464
- added an option to show info messages in default chat window
@@ -1149,7 +1149,7 @@ if locale == "deDE" then
11491149
Willkommen zu Guildbook! Um zu beginnen, klicke auf das Pfeilsymbol in der oberen linken Ecke.
11501150
Das öffnet ein Menü in dem du deine Gilde(n) siehst. Wenn du nichts siehst, geh zu Curse und beschwer dich ;)
11511151
1152-
5.53 - Neuen Check hinzugefügt bevor nach Herstellern eines Gegenstandes geschaut wird
1152+
5.54 - Neuen Check hinzugefügt bevor nach Herstellern eines Gegenstandes geschaut wird
11531153
* Aktuelles Inventar hinzugefügt mit neuem Event-Typ
11541154
* 'Rechtsklick um Gilde aus dem Hauptmenü zu löschen' hinzugefügt
11551155
* Alt-Charakter-System verbessert
@@ -1644,7 +1644,7 @@ Vous devriez ouvrir les fenêtres de vos métiers afin que l'addon puisse les sc
16441644
Ca vaut aussi le coup de passer dans la section "Profile" pour définir vos spés et votre personnage principal.
16451645
16461646
1647-
MàJ 5.53
1647+
MàJ 5.54
16481648
- correction de bugs
16491649
- ajout d'une option pour montrer des messages d'information dans la fenêtre de chat
16501650
- ajout d'une option "équipement actuel" dans le profil du perso

0 commit comments

Comments
 (0)