mirror of
https://github.com/gamedig/node-gamedig.git
synced 2024-11-17 09:18:31 +01:00
Remove debugging in openttd protocol
This commit is contained in:
parent
a340613974
commit
ca255d8c3f
2 changed files with 1 additions and 2 deletions
|
@ -11,7 +11,7 @@
|
||||||
],
|
],
|
||||||
"main": "lib/index.js",
|
"main": "lib/index.js",
|
||||||
"author": "Michael Morrison",
|
"author": "Michael Morrison",
|
||||||
"version": "0.2.13",
|
"version": "0.2.14",
|
||||||
"repository" : {
|
"repository" : {
|
||||||
"type" : "git",
|
"type" : "git",
|
||||||
"url" : "https://github.com/sonicsnes/node-gamedig.git"
|
"url" : "https://github.com/sonicsnes/node-gamedig.git"
|
||||||
|
|
|
@ -13,7 +13,6 @@ module.exports = require('./core').extend({
|
||||||
if(version >= 4) {
|
if(version >= 4) {
|
||||||
var numGrf = reader.uint(1);
|
var numGrf = reader.uint(1);
|
||||||
state.raw.grfs = [];
|
state.raw.grfs = [];
|
||||||
console.log("GRF", numGrf);
|
|
||||||
for(var i = 0; i < numGrf; i++) {
|
for(var i = 0; i < numGrf; i++) {
|
||||||
var grf = {};
|
var grf = {};
|
||||||
grf.id = reader.part(4).toString('hex');
|
grf.id = reader.part(4).toString('hex');
|
||||||
|
|
Loading…
Reference in a new issue