diff options
Diffstat (limited to 'util/constants.js')
-rw-r--r-- | util/constants.js | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/util/constants.js b/util/constants.js index 16cd037..51345fe 100644 --- a/util/constants.js +++ b/util/constants.js @@ -22,6 +22,11 @@ let TimerData = new PogObject("Coleweight", { "timer": 0 }, "config/.timer_data.json") +let DowntimeData = new PogObject("Coleweight", { + "x": 0, + "y": 0 +}, "config/.downtime_data.json") + export default { PREFIX: "&2[CW] ", @@ -29,6 +34,7 @@ export default data: PogData, powderdata: PowderData, timerdata: TimerData, + downtimedata: DowntimeData, cwValues: [], calcCwPerHr: false, upTimeTrack: false, |