Thread: WOD/Pre-patch
View Single Post
12-05-14, 03:18 PM   #600
atl77
A Chromatic Dragonspawn
Join Date: Oct 2014
Posts: 179
Progress decimal places

Originally Posted by Rythal View Post
The bar itself does not show, however in the quest watch it should show "Progress: xx.xx" ... which seems to be working as a bug report was submitted that right now it's not rounding and instead showing the exact number as "Progress: 12.345678901234"
I have rounded to 1/10 by using

Lua Code:
  1. (((GetQuestProgressBarPercent(questId) * 10) % 1) / 10)

instead of

Lua Code:
  1. GetQuestProgressBarPercent(questId)

Maybe you have a better solution?