39 lines
868 B
JavaScript
39 lines
868 B
JavaScript
module.exports = {
|
|
'motd': 'A Minecraft Server \nRunning flying-squid',
|
|
// host: '',
|
|
// eslint-disable-next-line unicorn/numeric-separators-style
|
|
'port': 25565,
|
|
'max-players': 10,
|
|
'online-mode': false,
|
|
'gameMode': 0,
|
|
'difficulty': 0,
|
|
'worldFolder': 'world',
|
|
'pluginsFolder': true,
|
|
// todo set sid, disable entities auto-spawn
|
|
'generation': {
|
|
// grass_field
|
|
// diamond_square
|
|
// empty
|
|
// superflat
|
|
// all_the_blocks
|
|
// nether
|
|
'name': 'diamond_square',
|
|
options: {}
|
|
// 'options': {
|
|
// 'worldHeight': 80
|
|
// }
|
|
},
|
|
'kickTimeout': 10_000,
|
|
'plugins': {},
|
|
'modpe': false,
|
|
'view-distance': 2,
|
|
'player-list-text': {
|
|
'header': 'Flying squid',
|
|
'footer': 'Integrated server'
|
|
},
|
|
keepAlive: false,
|
|
'everybody-op': true,
|
|
'max-entities': 100,
|
|
'version': '1.18',
|
|
versionMajor: '1.18'
|
|
}
|