Closed PanGolob closed 1 month ago
The Items progress % displayed doesn't match the numbers.
There are two ways this info could work:
1) Total progress
In this example the number displayed should be 45.25/50 = 90.5%
2) Progress within current level
In this example the number displayed should be (45.25-5)/(50-5) = 89.4%
currently it is counted as return 100 * (this.item.masteryPoint - before) / this.masteryNeeded;
return 100 * (this.item.masteryPoint - before) / this.masteryNeeded;
gooboo/src/components/partial/horde/Item.vue : 221
which is a mix of both worlds
The Items progress % displayed doesn't match the numbers.
There are two ways this info could work:
1) Total progress
In this example the number displayed should be 45.25/50 = 90.5%
2) Progress within current level
In this example the number displayed should be (45.25-5)/(50-5) = 89.4%
currently it is counted as
return 100 * (this.item.masteryPoint - before) / this.masteryNeeded;
which is a mix of both worlds