remove some redundant casts

This commit is contained in:
Johannes Loher 2021-02-05 02:52:55 +01:00
parent 2641b1ee74
commit b8d11fa5cd
4 changed files with 5 additions and 5 deletions

View file

@ -25,8 +25,8 @@ Hooks.once("init", async function () {
CONFIG.DS4 = DS4;
// Define custom Entity classes
CONFIG.Actor.entityClass = DS4Actor as typeof Actor;
CONFIG.Item.entityClass = DS4Item as typeof Item;
CONFIG.Actor.entityClass = DS4Actor;
CONFIG.Item.entityClass = DS4Item;
// Define localized type labels
CONFIG.Actor.typeLabels = DS4.i18n.actorTypes;