forked from GitHub-Mirrors/foundry-sw5e

DND5e Core 1.3.5 modded to SW5e System Combining with DND5e Core 1.3.2 to see one big commit since last core update DND5e Core 1.3.2 modded to SW5e System
15 lines
390 B
JavaScript
15 lines
390 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`);
|
|
}
|