File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -349,7 +349,11 @@ function Character:GetProfile()
349349end
350350
351351function 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
353357end
354358
355359function Character :GetTalents (spec )
360364
361365
362366function 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
364373end
365374
366375function Character :GetGlyphs (spec )
Original file line number Diff line number Diff line change 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!
Original file line number Diff line number Diff line change @@ -58,7 +58,7 @@ You should open your tradeskills and character frame so Guildbook can scan vario
5858
5959Its 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
11491149Willkommen zu Guildbook! Um zu beginnen, klicke auf das Pfeilsymbol in der oberen linken Ecke.
11501150Das ö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
16441644Ca 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
You can’t perform that action at this time.
0 commit comments