We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Describe the bug If I do a test for a skill with some remove setback dices these one don't remove the setback
To Reproduce Do a check from crew skill of a vehicle. I don't know why from actor sheet the remove setback are not added in the dice roller
Expected behavior A clear and concise description of what you expected to happen.
Screenshots
Desktop (please complete the following information):
Solution In pool.js file into the function renderDiceExpression line 219 if I add the follwing code before let dicePool ... it was fixed :
renderDiceExpression
let dicePool ...
this.setback = Math.max(0,this.setback - this.remsetback);
The text was updated successfully, but these errors were encountered:
This is by design. Many remove setbacks are situational. It's up to the user to apply them.
Sorry, something went wrong.
wrycu
No branches or pull requests
Describe the bug
If I do a test for a skill with some remove setback dices these one don't remove the setback
To Reproduce
Do a check from crew skill of a vehicle. I don't know why from actor sheet the remove setback are not added in the dice roller
Expected behavior
A clear and concise description of what you expected to happen.
Screenshots
Desktop (please complete the following information):
Solution
In pool.js file into the function
renderDiceExpression
line 219if I add the follwing code before
let dicePool ...
it was fixed :The text was updated successfully, but these errors were encountered: