mirror of
https://github.com/danbulant/flying-squid
synced 2026-05-24 12:21:56 +00:00
update the default settings in basic.js, fix #147
This commit is contained in:
parent
de202f5faa
commit
cc3d4e09b9
2 changed files with 20 additions and 10 deletions
11
README.md
11
README.md
|
|
@ -62,8 +62,8 @@ var mcServer = require("flying-squid");
|
|||
mcServer.createMCServer({
|
||||
"motd": "A Minecraft Server \nRunning flying-squid",
|
||||
"port": 25565,
|
||||
"maxPlayers": 10,
|
||||
"onlineMode": true,
|
||||
"max-players": 10,
|
||||
"online-mode": true,
|
||||
"logging": true,
|
||||
"gameMode": 1,
|
||||
"generation": {
|
||||
|
|
@ -72,7 +72,12 @@ mcServer.createMCServer({
|
|||
"worldHeight": 80
|
||||
}
|
||||
},
|
||||
"modpe": false
|
||||
"kickTimeout": 10000,
|
||||
"plugins": {
|
||||
|
||||
},
|
||||
"modpe": false,
|
||||
"view-distance": 10
|
||||
});
|
||||
```
|
||||
|
||||
|
|
|
|||
|
|
@ -3,8 +3,8 @@ var mcServer=require("../");
|
|||
mcServer.createMCServer({
|
||||
"motd": "A Minecraft Server \nRunning flying-squid",
|
||||
"port": 25565,
|
||||
"maxPlayers": 10,
|
||||
"onlineMode": true,
|
||||
"max-players": 10,
|
||||
"online-mode": true,
|
||||
"logging": true,
|
||||
"gameMode": 1,
|
||||
"generation": {
|
||||
|
|
@ -13,5 +13,10 @@ mcServer.createMCServer({
|
|||
"worldHeight": 80
|
||||
}
|
||||
},
|
||||
"modpe": false
|
||||
"kickTimeout": 10000,
|
||||
"plugins": {
|
||||
|
||||
},
|
||||
"modpe": false,
|
||||
"view-distance": 10
|
||||
});
|
||||
|
|
|
|||
Loading…
Reference in a new issue