mirror of
https://github.com/mangosfour/server.git
synced 2025-12-25 04:37:02 +00:00
[8114] Fixed uint16 to uint32 for spell id in SkillDiscoveryEntry
Signed-off-by: ApoC <apoc@nymfe.net>
This commit is contained in:
parent
7c5f254012
commit
cece592b5f
2 changed files with 2 additions and 2 deletions
|
|
@ -35,7 +35,7 @@ struct SkillDiscoveryEntry
|
|||
SkillDiscoveryEntry()
|
||||
: spellId(0), reqSkillValue(0), chance(0) {}
|
||||
|
||||
SkillDiscoveryEntry(uint16 _spellId, uint32 req_skill_val, float _chance)
|
||||
SkillDiscoveryEntry(uint32 _spellId, uint32 req_skill_val, float _chance)
|
||||
: spellId(_spellId), reqSkillValue(req_skill_val), chance(_chance) {}
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue