-
Notifications
You must be signed in to change notification settings - Fork 67
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Tabaxi have Claws duplicated as a weapon #29
Comments
I think this same problem applies to the Lizardfolk bite attack and the Aarakocra talons attack (these get added in race.py, and to the Monk Unarmed attack:
The issue is that create-character will add all weapons to the character sheet, which includes the above attacks, and then makesheets adds them again, causing duplicates. The solution would seem that create-character only adds the user's weapon choices:
@canismarko I can add a patch for this too, somewhere anyway. |
Create-character will add all weapons to the character sheet, includes various attacks that are added by default througgh race.py and character.py. These weapons are Talons, Bite claws, and, for Monk, Unarmed. Then makesheets adds these again, causing duplicates. The solution would seem that create-character only adds the user's weapon choices, and not _all_ weapons for a character. This fixes canismarko#29
When a Tabaxi character is generated using
create-character
, theweapons
line in the Python file looks e.g. like this:And this is the respective section in the PDF:
After editing the Python file to this:
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.The text was updated successfully, but these errors were encountered: