mirror of
https://github.com/mangosfour/server.git
synced 2025-12-14 16:37:01 +00:00
[8413] Fixed lost 0 in comment and swap enum elemys for better fit to 0.12 cases.
This commit is contained in:
parent
261ad1c5df
commit
b91da7846e
2 changed files with 6 additions and 6 deletions
|
|
@ -43,7 +43,7 @@
|
|||
// |color|Hgameobject:go_guid|h[name]|h|r
|
||||
// |color|Hgameobject_entry:go_id|h[name]|h|r
|
||||
// |color|Hglyph:glyph_slot_id:glyph_prop_id|h[%s]|h|r - client, at shift click in glyphs dialog, GlyphSlot.dbc, GlyphProperties.dbc
|
||||
// |color|Hitem:item_id:perm_ench_id:gem1:gem2:gem3:0:0:0:reporter_level|h[name]|h|r
|
||||
// |color|Hitem:item_id:perm_ench_id:gem1:gem2:gem3:0:0:0:0:reporter_level|h[name]|h|r
|
||||
// - client, item icon shift click
|
||||
// |color|Hitemset:itemset_id|h[name]|h|r
|
||||
// |color|Hplayer:name|h[name]|h|r - client, in some messages, at click copy only name instead link
|
||||
|
|
@ -1364,8 +1364,8 @@ enum SpellLinkType
|
|||
{
|
||||
SPELL_LINK_SPELL = 0,
|
||||
SPELL_LINK_TALENT = 1,
|
||||
SPELL_LINK_TRADE = 2,
|
||||
SPELL_LINK_ENCHANT = 3,
|
||||
SPELL_LINK_ENCHANT = 2,
|
||||
SPELL_LINK_TRADE = 3,
|
||||
SPELL_LINK_GLYPH = 4
|
||||
};
|
||||
|
||||
|
|
@ -1373,8 +1373,8 @@ static char const* const spellKeys[] =
|
|||
{
|
||||
"Hspell", // normal spell
|
||||
"Htalent", // talent spell
|
||||
"Htrade", // profession/skill spell
|
||||
"Henchant", // enchanting recipe spell
|
||||
"Htrade", // profession/skill spell
|
||||
"Hglyph", // glyph
|
||||
0
|
||||
};
|
||||
|
|
@ -1414,8 +1414,8 @@ uint32 ChatHandler::extractSpellIdFromLink(char* text)
|
|||
|
||||
return talentEntry->RankID[rank];
|
||||
}
|
||||
case SPELL_LINK_TRADE:
|
||||
case SPELL_LINK_ENCHANT:
|
||||
case SPELL_LINK_TRADE:
|
||||
return id;
|
||||
case SPELL_LINK_GLYPH:
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue