While updating the CBM Forging References, I found two small

s.
The first

is with the Evening Star. It is not working as intended due to 2 misspellings of the word "effect". Currently, the erroneous code is:
Code:
#selectitem "Evening Star"
#constlevel 2
#end
#selectweapon 304
#secondaryefect 0
#end
#selectweapon 304
#secondaryefectalways 305
#end
The second

is with the 2-handed Bane Blade. It is still a Construction-2 item, though presumably should be a Construction-0 item like its 1-handed brother. This is because they're both called "Bane Blade" and the game only mods the first, 1-handed version.
--------------
Both

s can easily be corrected by appending your CBcomplete_1.3.dm file with the following code:
Code:
#selectweapon 304
#secondaryeffect 0
#end
#selectweapon 304
#secondaryeffectalways 305
#end
#selectitem 30
#constlevel 0
#end