Added symbols converter

Updated packs
This commit is contained in:
Vlyan
2020-12-28 19:03:29 +01:00
parent b057746ae5
commit fe6508e76a
20 changed files with 306 additions and 102 deletions

View File

@@ -122,7 +122,7 @@ export class RollL5r5e extends Roll {
total +=
(this.l5r5e.dicesTypes.std ? " | " : "") +
["success", "explosive", "opportunity", "strife"]
.map((props) => (summary[props] > 0 ? `<i class="${props}"></i> ${summary[props]}` : null))
.map((props) => (summary[props] > 0 ? `<i class="i_${props}"></i> ${summary[props]}` : null))
.filter((c) => !!c)
.join(" | ");
}