SpaceNinjaServer/src/controllers/api/hubInstancesController.ts
Sainan a65cc1f724 improve: skip HUB instance selection
Makes the game think there's only 1 HUB instance so it won't ask us to pick one.
2024-05-09 23:14:54 +02:00

8 lines
199 B
TypeScript

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