Fixed options.favicon in createServer

This commit is contained in:
Thomas Alrek 2016-04-04 21:37:08 +02:00
parent 8b14f84474
commit 9831bdc4c2

View file

@ -37,6 +37,7 @@ function createServer(options) {
server.maxPlayers = options['max-players'] || 20;
server.playerCount = 0;
server.onlineModeExceptions = {};
server.favicon = options.favicon || 0;
server.on("connection", function(client) {
client.once('set_protocol', onHandshake);
client.once('login_start', onLogin);