forked from mirrors/webxoss-core
Fix mayu's room
This commit is contained in:
parent
c9ec6b6213
commit
2fb41136d3
3 changed files with 10 additions and 3 deletions
2
Game.js
2
Game.js
|
@ -172,7 +172,7 @@ Game.checkMayusRoom = function (infos) {
|
||||||
34: 2, // <修復>
|
34: 2, // <修復>
|
||||||
178: 2, // <先駆の大天使 アークゲイン>
|
178: 2, // <先駆の大天使 アークゲイン>
|
||||||
534: 1, // <ロック・ユー>
|
534: 1, // <ロック・ユー>
|
||||||
689: 1, // <RAINY>
|
// 689: 1, // <RAINY>
|
||||||
474: 0, // <ノー・ゲイン>
|
474: 0, // <ノー・ゲイン>
|
||||||
23: 0, // <大器晩成>
|
23: 0, // <大器晩成>
|
||||||
689: 0, // <RAINY>
|
689: 0, // <RAINY>
|
||||||
|
|
9
test.js
9
test.js
|
@ -58,7 +58,14 @@ if (global.window) {
|
||||||
pingTimeout: 30000,
|
pingTimeout: 30000,
|
||||||
maxHttpBufferSize: 1024*1024,
|
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 = {
|
var cfg = {
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
Subproject commit b197ea32941722470e074d91bc6f345f3d9ec6de
|
Subproject commit 8963b8f00812da983440f306d7c340113c82bcb1
|
Loading…
Reference in a new issue