Merged with main

This commit is contained in:
WBHarry 2026-05-20 23:36:02 +02:00
commit a6e9f2cac2
10 changed files with 120 additions and 73 deletions

View file

@ -452,10 +452,6 @@ export async function createEmbeddedItemsWithEffects(actor, baseData) {
await actor.createEmbeddedDocuments('Item', effectData);
}
export const slugify = name => {
return name.toLowerCase().replaceAll(' ', '-').replaceAll('.', '_');
};
export function shuffleArray(array) {
let currentIndex = array.length;
while (currentIndex != 0) {