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
In Midi-qol I broadcast LMRTFY requests targeted to a specific user.
In the case of player owned characters (when the player is not logged in) I want to be able to have the GM take the roll on the users behalf.
The "newish" filter out player owned characters code in lmrtfy.js breaks that behaviour.
// remove player characters from GM's requests if (game.user.isGM) { actors = actors.filter(a => !a.hasPlayerOwner); }
This fixes my problem and I don't think it breaks the intent of the check.
// remove player characters from GM's requests if (game.user.isGM && data.user !== game.user.id) { actors = actors.filter(a => !a.hasPlayerOwner); }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In Midi-qol I broadcast LMRTFY requests targeted to a specific user.
In the case of player owned characters (when the player is not logged in) I want to be able to have the GM take the roll on the users behalf.
The "newish" filter out player owned characters code in lmrtfy.js breaks that behaviour.
This fixes my problem and I don't think it breaks the intent of the check.
The text was updated successfully, but these errors were encountered: