[8114] Fixed uint16 to uint32 for spell id in SkillDiscoveryEntry

Signed-off-by: ApoC <apoc@nymfe.net>
This commit is contained in:
ApoC 2009-07-04 17:29:04 +02:00
parent 7c5f254012
commit cece592b5f
2 changed files with 2 additions and 2 deletions

View file

@ -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) {}
};