Пример #1
0
  /**
   * Set the spell book to hold any new known spells.
   *
   * @param bookName The name of the new default spell book.
   */
  @Override
  public void setDefaultSpellBook(String bookName) {
    SpellBook book = charDisplay.getSpellBookByName(bookName);
    if (book == null || book.getType() != SpellBook.TYPE_SPELL_BOOK) {
      return;
    }

    pc.setSpellBookNameToAutoAddKnown(bookName);
    defaultSpellBook.set(bookName);
  }