oldOptions is an object (specifically bot.game.options)
newOptions is an object (specifically bot.game.options)
bot.on('gameOptionsChange', (oldOptions, newOptions) => {
console.log('game options have changed!');
console.log('old options:', oldOptions);
console.log('new options:', newOptions);
});