Skip to content

Commit

Permalink
Update the analyzer for ToS.
Browse files Browse the repository at this point in the history
  • Loading branch information
Phillip Huff committed Jun 20, 2017
1 parent 2821d5f commit 730224c
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion analyze.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ var time_mapping

var modelname;
if(!argv.model) {
modelname = "nighthold";
modelname = "tos";
} else {
modelname = argv.model;
}
Expand Down Expand Up @@ -56,6 +56,10 @@ results.forEach(function(result){
var res = result.match("^(.*)_([0-9]*)_(.*).simc.xml");
var addRes = result.match("^([^_]*)_(.*).simc.xml");

if(res == null) {
return;
}

var time = res[2];
var fight = res[3];
var weight;
Expand Down

0 comments on commit 730224c

Please sign in to comment.