Skip to content

Commit

Permalink
Fixed some attribute error for RunLogger
Browse files Browse the repository at this point in the history
  • Loading branch information
Xzandro committed Apr 19, 2017
1 parent b8fd89f commit 8e3f93a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/mapping.js
Original file line number Diff line number Diff line change
Expand Up @@ -1047,7 +1047,7 @@ module.exports = {

if (this.monster.names[family]) {
var attribute = Number(id.toString().slice(-1));
return this.monster.names[family] + ' (' + this.monster.attribute[attribute] + ')';
return this.monster.names[family] + ' (' + this.monster.attributes[attribute] + ')';
} else {
return 'Unknown Monster';
}
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "sw-exporter",
"productName": "Summoners War Exporter",
"version": "0.0.15",
"version": "0.0.16",
"description": "This tool will parse intercepted data from Summoners War and extract information on the monsters and runes of the user.",
"main": "./app/main.js",
"scripts": {
Expand Down

0 comments on commit 8e3f93a

Please sign in to comment.