[Change bard only component support clinton@unknownlamer.org**20080427034724 * The only bard only component is Verbal and so now there is a 'bard-verbal component in the database rather than the complicated :bard-only mess ] { hunk ./src/srd-import.lisp 147 - (bard? (push (list :bard-only component) components)) + (bard? (if (string= component "V") + (push "BV" components) + (error "Unknown bard only component: ~A" component))) hunk ./src/srd-import.lisp 152 + ("BV" . bard-verbal) hunk ./src/srd-import.lisp 167 - (component-name->symbol (third component)))) - (:bard-only (list - :bard-only - (component-name->symbol (second component))))) + (component-name->symbol (third component))))) hunk ./src/symbols.lisp 51 - (somatic s) - (material m) - (focus f) - (divine-focus df) - (xp-cost xp))) + (bard-verbal bv) + (somatic s) + (material m) + (focus f) + (divine-focus df) + (xp-cost xp))) }