Skip to content

Commit

Permalink
Merge pull request #1 from serxoz/development
Browse files Browse the repository at this point in the history
fix creation dialog not closing
  • Loading branch information
serxoz authored Jan 12, 2021
2 parents 4b0446e + 003921d commit fd8f435
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -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.
3 changes: 2 additions & 1 deletion module/dialog/character-creation.js
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ export class OseCharacterCreator extends FormApplication {
});
}

async close() {
async close(options) {
super.close();
// Gather scores
let scores = {};
Expand All @@ -127,6 +127,7 @@ export class OseCharacterCreator extends FormApplication {
content: content,
speaker,
});
return super.close(options);
}

/** @override */
Expand Down
6 changes: 3 additions & 3 deletions system.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"],
Expand All @@ -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"
}

0 comments on commit fd8f435

Please sign in to comment.