Skip to content

Commit

Permalink
Change layout of bosonic damage misc description
Browse files Browse the repository at this point in the history
  • Loading branch information
DarkFenX committed Dec 16, 2018
1 parent 3297ef8 commit 7ffced2
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion gui/builtinViewColumns/misc.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,9 @@ def __getData(self, stuff):
text = ""
tooltip = ""
elif max(doomsday_duration / doomsday_dottime, 1) > 1:
text = "{0} dmg over {1} s".format(formatAmount(volley * (doomsday_duration / doomsday_dottime), 3, 0, 3), doomsday_duration / 1000)
text = "{} over {}s".format(
formatAmount(volley * (doomsday_duration / doomsday_dottime), 3, 0, 6),
formatAmount((doomsday_duration / 1000), 0, 0, 0))
tooltip = "Raw damage done over time"
else:
text = "{0} dmg".format(formatAmount(volley * (doomsday_duration / doomsday_dottime), 3, 0, 3))
Expand Down

0 comments on commit 7ffced2

Please sign in to comment.