meepen / salien-bot

Steam Summer Sale 2018 "Salien" minigame bot - runs in console or browser
MIT License
418 stars 104 forks source link

Boss HP precentage formatted wrong #157

Closed blackmagic0 closed 6 years ago

blackmagic0 commented 6 years ago

If I am correct the decimal is in the wrong position: https://i.imgur.com/BsF040L.png

ahakola commented 6 years ago

Change line 577 in the headless.js to info_lines.push(["Boss HP",${cl.bossStatus.boss_hp} / ${cl.bossStatus.boss_max_hp} [${(cl.bossStatus.boss_hp / cl.bossStatus.boss_max_hp * 100).toFixed(2)}%]]);

aka adding that * 100

ahakola commented 6 years ago

158