Remove unneeded diceChoice function now that DiceField is a class I can use

This commit is contained in:
Oliver-Akins 2024-04-30 19:56:02 -06:00
parent 851992161f
commit d92d6b9d3c

View file

@ -1,17 +1,6 @@
import DOTDUNGEON from "../../config.mjs";
import { DiceField } from "../fields/DiceField.mjs";
function diceChoiceField() {
return new foundry.data.fields.StringField({
initial: ``,
blank: true,
trim: true,
options() {
return DOTDUNGEON.statDice;
},
});
};
function trainingLevelField() {
return new foundry.data.fields.NumberField({
initial: 0,