salien-script-js
Advanced tools
Comparing version 0.0.8 to 0.0.9
{ | ||
"name": "salien-script-js", | ||
"version": "0.0.8", | ||
"version": "0.0.9", | ||
"description": "Scripting the Steam Salien Sale minigame, the proper way.", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
@@ -66,2 +66,3 @@ # salien-script-js | ||
* [/r/saliens](https://steamcommunity.com/groups/summersaliens) id: `103582791462557324` | ||
* [Steam Universe](https://steamcommunity.com/groups/steamuniverse) id: `103582791434672565` | ||
@@ -68,0 +69,0 @@ ### 👥 Multiple tokens/scripts |
@@ -706,5 +706,5 @@ /** | ||
const timeRemaining = | ||
((report.next_level_score - report.new_score) / getScoreForZone(zone)) * (this.waitTime / 60); | ||
((report.next_level_score - report.new_score) / getScoreForZone(zoneInfo)) * (this.waitTime / 60); | ||
const hoursRemaining = Math.floor(timeRemaining / 60); | ||
const minutesRemaining = timeRemaining % 60; | ||
const minutesRemaining = Math.round(timeRemaining % 60); | ||
const levelEta = `${hoursRemaining}h ${minutesRemaining}m`; | ||
@@ -711,0 +711,0 @@ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
28683
95