Add optional tracking of slayer points

This commit is contained in:
Johannes Loher 2021-05-13 15:41:00 +02:00
parent 8d3e381d56
commit eb49c15d5f
12 changed files with 83 additions and 6 deletions

View file

@ -3,6 +3,7 @@ import { DS4 } from "../../config";
import { getCanvas } from "../../helpers";
import { DS4Item } from "../../item/item";
import { DS4ItemData } from "../../item/item-data";
import { getDS4Settings } from "../../settings";
import notifications from "../../ui/notifications";
import { DS4Actor } from "../actor";
import { isCheck } from "../actor-prepared-data";
@ -61,6 +62,7 @@ export class DS4ActorSheet extends ActorSheet<ActorSheet.Data<DS4Actor>> {
config: DS4,
// Add the items explicitly sorted by type to the data:
itemsByType,
settings: getDS4Settings(),
};
return data;
}