From ca255d8c3feac9f398211ec431f6be5eda43e6a3 Mon Sep 17 00:00:00 2001 From: Michael Morrison Date: Tue, 18 Nov 2014 00:48:03 -0600 Subject: [PATCH] Remove debugging in openttd protocol --- package.json | 2 +- protocols/openttd.js | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/package.json b/package.json index 0bbad8b..5dead29 100644 --- a/package.json +++ b/package.json @@ -11,7 +11,7 @@ ], "main": "lib/index.js", "author": "Michael Morrison", - "version": "0.2.13", + "version": "0.2.14", "repository" : { "type" : "git", "url" : "https://github.com/sonicsnes/node-gamedig.git" diff --git a/protocols/openttd.js b/protocols/openttd.js index 81ff68f..4717819 100644 --- a/protocols/openttd.js +++ b/protocols/openttd.js @@ -13,7 +13,6 @@ module.exports = require('./core').extend({ if(version >= 4) { var numGrf = reader.uint(1); state.raw.grfs = []; - console.log("GRF", numGrf); for(var i = 0; i < numGrf; i++) { var grf = {}; grf.id = reader.part(4).toString('hex');