improve: skip HUB instance selection

Makes the game think there's only 1 HUB instance so it won't ask us to pick one.
This commit is contained in:
Sainan 2024-05-09 23:14:54 +02:00
parent 61450b04bb
commit a65cc1f724

View File

@ -1,7 +1,7 @@
import { RequestHandler } from "express"; import { RequestHandler } from "express";
const hubInstancesController: RequestHandler = (_req, res) => { const hubInstancesController: RequestHandler = (_req, res) => {
res.json("list 50 16 1 0 scenarios 0 0 0 0 0 0"); res.json("list 50 1 0 0 scenarios 0 0 0 0 0 0");
}; };
export { hubInstancesController }; export { hubInstancesController };