diff --git a/CHANGELOG b/CHANGELOG index 40409ca..afdce9d 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -9,3 +9,6 @@ Fixed Item creation dialog on monsters ** Version 1.0.6 Monster sheet complete + +** Version 1.0.7 +- Fix creation dialog not closing. diff --git a/module/dialog/character-creation.js b/module/dialog/character-creation.js index 82b90d4..40301ce 100644 --- a/module/dialog/character-creation.js +++ b/module/dialog/character-creation.js @@ -104,7 +104,7 @@ export class OseCharacterCreator extends FormApplication { }); } - async close() { + async close(options) { super.close(); // Gather scores let scores = {}; @@ -127,6 +127,7 @@ export class OseCharacterCreator extends FormApplication { content: content, speaker, }); + return super.close(options); } /** @override */ diff --git a/system.json b/system.json index b334942..a5d55e9 100644 --- a/system.json +++ b/system.json @@ -2,9 +2,9 @@ "name": "ldlmde", "title": "Leyendas de la Marca del Este", "description": "Implementación del sistema de juego Leyendas de la Marca del Este para Foundry Virtual Tabletop.", - "version": "1.0.6", + "version": "1.0.7", "minimumCoreVersion": "0.7.5", - "compatibleCoreVersion": "0.7.5", + "compatibleCoreVersion": "0.7.9", "templateVersion": 1, "author": "Sergio Cotelo", "esmodules": ["ose.js"], @@ -26,5 +26,5 @@ "gridUnits": "m", "url": "https://github.com/serxoz/ldlmde/", "manifest": "https://raw.githubusercontent.com/serxoz/ldlmde/main/system.json", - "download": "https://github.com/serxoz/ldlmde/archive/1.0.6.zip" + "download": "https://github.com/serxoz/ldlmde/archive/1.0.7.zip" }