Skip to content

Commit

Permalink
Add missing var declaration (#1060)
Browse files Browse the repository at this point in the history
GameAction, MuleLogger, Misc
-Add missing var declaration from last commit
  • Loading branch information
imbalanced authored and noah- committed Jan 18, 2019
1 parent bb1b7da commit 6e9890e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion d2bs/kolbot/libs/GameAction.js
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ var GameAction = {
},

getItemDesc: function (unit, logIlvl) {
var i, desc,
var i, desc, index,
stringColor = "";

if (logIlvl === undefined) {
Expand Down
2 changes: 1 addition & 1 deletion d2bs/kolbot/libs/MuleLogger.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ var MuleLogger = {

// don't edit
getItemDesc: function (unit, logIlvl) {
var i, desc,
var i, desc, index,
stringColor = "";

if (logIlvl === undefined) {
Expand Down
2 changes: 1 addition & 1 deletion d2bs/kolbot/libs/common/Misc.js
Original file line number Diff line number Diff line change
Expand Up @@ -1171,7 +1171,7 @@ var Misc = {
},

getItemDesc: function (unit) {
var i, desc,
var i, desc, index,
stringColor = "";

desc = unit.description;
Expand Down

0 comments on commit 6e9890e

Please sign in to comment.