dungeon-sheets
dungeon-sheets copied to clipboard
Tabaxi have Claws duplicated as a weapon
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:
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:
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.