Fix import error
This commit is contained in:
parent
9a61b9f127
commit
1a2b465e6a
1 changed files with 2 additions and 2 deletions
|
|
@ -1,4 +1,4 @@
|
||||||
import { itemTiers } from "../../config.mjs";
|
import DOTDUNGEON from "../../config.mjs";
|
||||||
|
|
||||||
export class CommonItemData extends foundry.abstract.TypeDataModel {
|
export class CommonItemData extends foundry.abstract.TypeDataModel {
|
||||||
static defineSchema() {
|
static defineSchema() {
|
||||||
|
|
@ -15,7 +15,7 @@ export class CommonItemData extends foundry.abstract.TypeDataModel {
|
||||||
tier: new fields.StringField({
|
tier: new fields.StringField({
|
||||||
initial: `simple`,
|
initial: `simple`,
|
||||||
nullable: false,
|
nullable: false,
|
||||||
choices: itemTiers,
|
choices: DOTDUNGEON.itemTiers,
|
||||||
}),
|
}),
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue