This commit is contained in:
Denis Molony 2016-08-09 21:01:24 +10:00
parent 87626f2424
commit 2036ca4b96

View File

@ -114,8 +114,8 @@ class Character extends AbstractFile
if (index > 0 && index <= spellList.size ()) if (index > 0 && index <= spellList.size ())
spellBook.add (spellList.get (index - 1)); spellBook.add (spellList.get (index - 1));
else else
System.out.println (name + " SpellID : " + index + " is outside range 1:" System.out.println ("LinkSpell: " + name + " SpellID : " + index
+ spellList.size ()); + " is outside range 1:" + spellList.size ());
} }
} }