set up some default values to avoid math errors ... properly not needed

This commit is contained in:
Gered 2016-04-05 19:56:47 -04:00
parent 761051c132
commit 9f27e3c90a

View file

@ -26,8 +26,10 @@
{:name entity-name
:added-at timestamp
:last-activity-at timestamp
:damage {:in {}
:out {}}
:damage {:in {:total 0}
:out {:total 0}}
:healing {:in {:total 0}
:out {:total 0}}
:skill-uses {}
:alive-dps 0
:encounter-dps 0
@ -380,11 +382,13 @@
(assoc data :active-encounter
{:name encounter-name
:started-at timestamp
:duration 0
:entities {}
:skills {}
:damage {:in {}
:out {}}
:healing {}
:damage {:in {:total 0}
:out {:total 0}}
:healing {:hostile {:total 0}
:friendly {:total 0}}
:trigger-entities (get-in defined-encounters [encounter-name :entities])}))
(s/defn end-encounter :- RaidAnalysis