From 0be4162ae752279eaafd329107a9d36c9d88c7e4 Mon Sep 17 00:00:00 2001 From: Mark Sturgill Date: Mon, 20 Jul 2015 20:46:36 -0700 Subject: [PATCH] fix minor patch errata --- Scripts/Items/Skill Items/Tools/BaseRunicTool.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Scripts/Items/Skill Items/Tools/BaseRunicTool.cs b/Scripts/Items/Skill Items/Tools/BaseRunicTool.cs index 53815a788..b18a0b75c 100644 --- a/Scripts/Items/Skill Items/Tools/BaseRunicTool.cs +++ b/Scripts/Items/Skill Items/Tools/BaseRunicTool.cs @@ -182,7 +182,7 @@ namespace Server.Items private static void ApplySkillBonus( AosSkillBonuses attrs, int min, int max, int index, int low, int high ) { List possibleSkills = new List( 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;