mirror of
https://github.com/danbulant/flying-squid
synced 2026-07-05 03:00:46 +00:00
Fixed server side
This commit is contained in:
parent
f27a293c7a
commit
0c4fc34e57
2 changed files with 25 additions and 23 deletions
1
app.js
1
app.js
|
|
@ -37,6 +37,7 @@ server.on('login', function(client) {
|
||||||
gameMode: 0,
|
gameMode: 0,
|
||||||
dimension: 0,
|
dimension: 0,
|
||||||
difficulty: 0,
|
difficulty: 0,
|
||||||
|
reducedDebugInfo: false,
|
||||||
maxPlayers: server.maxPlayers
|
maxPlayers: server.maxPlayers
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
|
||||||
47
package.json
47
package.json
|
|
@ -1,25 +1,26 @@
|
||||||
{
|
{
|
||||||
"name": "node-minecraft-server",
|
"name": "node-minecraft-server",
|
||||||
"description": "A minecraft server written in node.js",
|
"description": "A minecraft server written in node.js",
|
||||||
"version": "0.0.1",
|
"version": "0.0.1",
|
||||||
"main": "app.js",
|
"main": "app.js",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "roblabla",
|
"name": "roblabla",
|
||||||
"email": "robinlambertz.dev@gmail.com"
|
"email": "robinlambertz.dev@gmail.com"
|
||||||
},
|
},
|
||||||
"keywords": [],
|
"keywords": [],
|
||||||
"licenses": {
|
"licenses": {
|
||||||
"type": "MIT"
|
"type": "MIT"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"minecraft-protocol": "^0.14.0",
|
"minecraft-protocol": "^0.14.0",
|
||||||
"buffers": "0.1.1"
|
"buffers": "0.1.1",
|
||||||
},
|
"longjohn": "~0.2.8"
|
||||||
"repository": {
|
},
|
||||||
"type": "git",
|
"repository": {
|
||||||
"url": "git://github.com/mhsjlw/node-minecraft-server.git"
|
"type": "git",
|
||||||
},
|
"url": "git://github.com/mhsjlw/node-minecraft-server.git"
|
||||||
"bugs": {
|
},
|
||||||
"url": "http://github.com/mhsjlw/node-minecraft-server/issues"
|
"bugs": {
|
||||||
}
|
"url": "http://github.com/mhsjlw/node-minecraft-server/issues"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue