diff --git a/CHANGELOG.md b/CHANGELOG.md index 66c1929..1191dca 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,7 @@ # Changelog ## 1.3.2 - Ronin's Bubble -- Added a tooltip on hover with all information for items all, and removed all these silly moving description (which made me crazy). +- Added a tooltip on hover with all information for items, and removed all these silly moving description (which made me crazy). - Added PoW Revised 20Q (for old Ronin, just modify the template in 20Q to change the character sheet fields). - Added Bushido tenets on Social tab in sheet for all (I think this is useful for players, and it's in Core rulebook so... why this is not by default ;) ). - Added English/French Journal Compendiums for Conditions and Terrain Qualities (thanks to TesserWract for English and icons). diff --git a/system/scripts/actors/twenty-questions.js b/system/scripts/actors/twenty-questions.js index 51e2971..7a781f3 100644 --- a/system/scripts/actors/twenty-questions.js +++ b/system/scripts/actors/twenty-questions.js @@ -325,7 +325,7 @@ export class TwentyQuestions { // Update actor await actor.update({ - name: (formData.step2.family + " " + formData.step19.firstname).trim(), + name: ((formData.template !== "pow" ? formData.step2.family + " " : "") + formData.step19.firstname).trim(), data: actorDatas, }); }