Fix mayu's room

This commit is contained in:
WEBXOSS 2016-12-10 14:29:45 +08:00
parent c9ec6b6213
commit 2fb41136d3
3 changed files with 10 additions and 3 deletions

View file

@ -172,7 +172,7 @@ Game.checkMayusRoom = function (infos) {
34: 2, // <修復>
178: 2, // <先駆の大天使 アークゲイン>
534: 1, // <ロック・ユー>
689: 1, // <>
// 689: 1, // <>
474: 0, // <ノー・ゲイン>
23: 0, // <大器晩成>
689: 0, // <>

View file

@ -58,7 +58,14 @@ if (global.window) {
pingTimeout: 30000,
maxHttpBufferSize: 1024*1024,
});
server.listen(80);
var port = 80;
process.argv.slice(2).forEach(function (arg) {
var match = arg.match(/^port=(\d+)/)
if (match) {
port = +match[1];
}
});
server.listen(port);
}
var cfg = {

@ -1 +1 @@
Subproject commit b197ea32941722470e074d91bc6f345f3d9ec6de
Subproject commit 8963b8f00812da983440f306d7c340113c82bcb1