fix minor patch errata

This commit is contained in:
Mark Sturgill 2015-07-20 20:46:36 -07:00
parent 28aa20340c
commit 0be4162ae7

View file

@ -182,7 +182,7 @@ namespace Server.Items
private static void ApplySkillBonus( AosSkillBonuses attrs, int min, int max, int index, int low, int high )
{
List<SkillName> possibleSkills = new List<SkillName>( attrs.Owner is Spellbook ? m_PossibleSpellbookSkills : m_PossibleBonusSkills );
int count = ( Core.SE ? possibleSkills.Length : possibleSkills.Length - 2 );
int count = ( Core.SE ? possibleSkills.Count : possibleSkills.Count - 2 );
SkillName sk, check;
double bonus;