mirror of
https://github.com/danbulant/flying-squid
synced 2026-06-14 12:01:12 +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,
|
||||
dimension: 0,
|
||||
difficulty: 0,
|
||||
reducedDebugInfo: false,
|
||||
maxPlayers: server.maxPlayers
|
||||
});
|
||||
|
||||
|
|
|
|||
47
package.json
47
package.json
|
|
@ -1,25 +1,26 @@
|
|||
{
|
||||
"name": "node-minecraft-server",
|
||||
"description": "A minecraft server written in node.js",
|
||||
"version": "0.0.1",
|
||||
"main": "app.js",
|
||||
"author": {
|
||||
"name": "roblabla",
|
||||
"email": "robinlambertz.dev@gmail.com"
|
||||
},
|
||||
"keywords": [],
|
||||
"licenses": {
|
||||
"type": "MIT"
|
||||
},
|
||||
"dependencies": {
|
||||
"minecraft-protocol": "^0.14.0",
|
||||
"buffers": "0.1.1"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git://github.com/mhsjlw/node-minecraft-server.git"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "http://github.com/mhsjlw/node-minecraft-server/issues"
|
||||
}
|
||||
"name": "node-minecraft-server",
|
||||
"description": "A minecraft server written in node.js",
|
||||
"version": "0.0.1",
|
||||
"main": "app.js",
|
||||
"author": {
|
||||
"name": "roblabla",
|
||||
"email": "robinlambertz.dev@gmail.com"
|
||||
},
|
||||
"keywords": [],
|
||||
"licenses": {
|
||||
"type": "MIT"
|
||||
},
|
||||
"dependencies": {
|
||||
"minecraft-protocol": "^0.14.0",
|
||||
"buffers": "0.1.1",
|
||||
"longjohn": "~0.2.8"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git://github.com/mhsjlw/node-minecraft-server.git"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "http://github.com/mhsjlw/node-minecraft-server/issues"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue