forked from GitHub-Mirrors/foundry-sw5e
16 lines
394 B
JavaScript
16 lines
394 B
JavaScript
![]() |
/**
|
||
|
* @deprecated since 1.3.0
|
||
|
* @ignore
|
||
|
*/
|
||
|
async function d20Dialog(data, options) {
|
||
|
throw new Error(`The d20Dialog helper method is deprecated in favor of D20Roll#configureDialog`);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @deprecated since 1.3.0
|
||
|
* @ignore
|
||
|
*/
|
||
|
async function damageDialog(data, options) {
|
||
|
throw new Error(`The damageDialog helper method is deprecated in favor of DamageRoll#configureDialog`);
|
||
|
}
|