Added missing Mantis "Storm Fleet Tide Seer" school techniques : "Storm Surge" and "Eye of the Storm".

This commit is contained in:
Vlyan
2021-09-10 19:39:15 +02:00
parent a724fc5d6f
commit 38e871a370
6 changed files with 20 additions and 4 deletions

View File

@@ -239,7 +239,7 @@ export class BaseSheetL5r5e extends ActorSheet {
if (
this.actor.data.items.some((embedItem) => {
// Search in children
if (embedItem.items?.has(item.data._id)) {
if (embedItem.items instanceof Map && embedItem.items.has(item.data._id)) {
return true;
}
return embedItem.data._id === item.data._id;