2025-08-24 21:41:20 -07:00
|
|
|
import type { RequestHandler } from "express";
|
2025-10-16 00:48:12 -07:00
|
|
|
import type { ITunables } from "../../types/bootstrapperTypes.ts";
|
2024-10-12 00:26:19 +02:00
|
|
|
|
2025-02-04 19:13:48 -08:00
|
|
|
// This endpoint is specific to the OpenWF Bootstrapper: https://openwf.io/bootstrapper-manual
|
|
|
|
|
|
2025-10-16 00:48:12 -07:00
|
|
|
export const tunablesController: RequestHandler = (_req, res) => {
|
2025-02-04 19:13:48 -08:00
|
|
|
const tunables: ITunables = {};
|
|
|
|
|
//tunables.prohibit_skip_mission_start_timer = true;
|
|
|
|
|
//tunables.prohibit_fov_override = true;
|
|
|
|
|
//tunables.prohibit_freecam = true;
|
|
|
|
|
//tunables.prohibit_teleport = true;
|
|
|
|
|
//tunables.prohibit_scripts = true;
|
|
|
|
|
res.json(tunables);
|
2024-10-12 00:26:19 +02:00
|
|
|
};
|