quest display enchancements

This commit is contained in:
2023-03-23 23:35:07 +01:00
parent 2131d70d6c
commit f605ef0f08
6 changed files with 85 additions and 8 deletions
+4
View File
@@ -24,4 +24,8 @@ export class Quest {
this.adventurers = [];
}
getPercentProgress(): number {
return Math.round(this.progressPoints / this.maxProgress * 100);
}
}