dungeon-sheets icon indicating copy to clipboard operation
dungeon-sheets copied to clipboard

Tabaxi have Claws duplicated as a weapon

Open geckon opened this issue 5 years ago • 0 comments

When a Tabaxi character is generated using create-character, the weapons line in the Python file looks e.g. like this:

weapons = ["Claws", "Shortbow", "Dagger", "Spear"]  # Example: ('shortsword', 'longsword')

And this is the respective section in the PDF: screenshot_2019-08-12_2150_21:50RRR

After editing the Python file to this:

weapons = ["Shortbow", "Dagger", "Spear", "Claws"]  # Example: ('shortsword', 'longsword')

the PDF still contains the Claws in the first place: screenshot_2019-08-12_2152_21:52RRR

Therefore, I assume that Claws are added automatically by makesheets no matter what the Python file contains which can cause trouble like in this case.

geckon avatar Aug 12 '19 19:08 geckon