Skip to content

Commit

Permalink
Added unknown boss to eq parser
Browse files Browse the repository at this point in the history
  • Loading branch information
GodMod committed Jun 16, 2017
1 parent b6f3c74 commit 7f1b656
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions includes/parser/everquest.parser.class.php
Expand Up @@ -48,6 +48,9 @@ public static function parse($text) {
$data['times'][] = array(trim($match['name']), time() - (2*3600), 'join');
$data['times'][] = array(trim($match['name']), time(), 'leave');
}

$data['zones'][] = array('unknown zone', time() - (2*4000), time());
$data['bosses'][] = array('unknown boss', time() - (1*3600), 0);
return $data;
}
}
Expand Down
2 changes: 1 addition & 1 deletion raidlogimport_plugin_class.php
Expand Up @@ -30,7 +30,7 @@ public static function __shortcuts() {
}

public $vstatus = 'Stable';
public $version = '0.7.2.1'; //Version for EQdkp Plus 2.3
public $version = '0.7.2.2'; //Version for EQdkp Plus 2.3

protected static $apiLevel = 23;

Expand Down

0 comments on commit 7f1b656

Please sign in to comment.