This commit is contained in:
2022-01-16 16:09:32 +01:00
parent 63e7f72753
commit f9d3916f3f
10 changed files with 24 additions and 123 deletions

View File

@@ -111,7 +111,7 @@ export class PegasusCommands {
async poolRoll( msg) {
let rollData = {
rollId:randomID(16),
alias: "Generic Roll",
alias: "Dice Pool Roll",
rollMode: game.settings.get("core", "rollMode"),
optionsDiceList: PegasusUtility.getOptionsDiceList(),
statDicesLevel: 0,
@@ -121,7 +121,7 @@ export class PegasusCommands {
otherDicesLevel: 0,
}
rollData.mode = "generic"
rollData.title = `Generic Pool Roll`;
rollData.title = `Dice Pool Roll`;
let rollDialog = await PegasusRollDialog.create( this, rollData);
rollDialog.render( true );
}