forked from TrinityCore/WowPacketParser
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix parsing of 3_4_2 update object (TrinityCore#889)
* Fix parsing of 3_4_2 update object create part * Fix update part of 3.4.2
- Loading branch information
1 parent
dc84112
commit ecc6a75
Showing
7 changed files
with
309 additions
and
168 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
396 changes: 248 additions & 148 deletions
396
WowPacketParserModule.V3_4_0_45166/Parsers/UpdateFieldsHandler342.cs
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 14 additions & 0 deletions
14
WowPacketParserModule.V3_4_0_45166/UpdateFields/V3_4_2_50129/CategoryCooldownMod.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
using WowPacketParser.Misc; | ||
using WowPacketParser.Store.Objects.UpdateFields; | ||
|
||
// This file is automatically generated, DO NOT EDIT | ||
|
||
namespace WowPacketParserModule.V3_4_0_45166.UpdateFields.V3_4_2_50129 | ||
{ | ||
public class CategoryCooldownMod : ICategoryCooldownMod | ||
{ | ||
public int SpellCategoryID { get; set; } | ||
public int ModCooldown { get; set; } | ||
} | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 14 additions & 0 deletions
14
WowPacketParserModule.V3_4_0_45166/UpdateFields/V3_4_2_50129/WeeklySpellUse.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
using WowPacketParser.Misc; | ||
using WowPacketParser.Store.Objects.UpdateFields; | ||
|
||
// This file is automatically generated, DO NOT EDIT | ||
|
||
namespace WowPacketParserModule.V3_4_0_45166.UpdateFields.V3_4_2_50129 | ||
{ | ||
public class WeeklySpellUse : IWeeklySpellUse | ||
{ | ||
public int SpellCategoryID { get; set; } | ||
public byte Uses { get; set; } | ||
} | ||
} | ||
|