Change default options

This commit is contained in:
schmelczerandras 2020-10-25 10:34:10 +01:00
parent 0e22f9b33d
commit a66fa63b4b

View file

@ -2,9 +2,9 @@ import { Options } from './options';
export const defaultOptions: Options = { export const defaultOptions: Options = {
port: 3000, port: 3000,
name: 'Localhost', name: 'Test server',
playerLimit: 16, playerLimit: 16,
seed: Math.random(), seed: Math.random(),
scoreLimit: 500, scoreLimit: 500,
worldSize: 10000, worldSize: 15000,
}; };