kill-switch-mcp 1.1.4 → 1.1.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/dist/server.js +4 -4
  2. package/package.json +1 -1
package/dist/server.js CHANGED
@@ -4674,10 +4674,10 @@ server.setRequestHandler(CallToolRequestSchema, async (request, extra) => {
4674
4674
  return errorResponse("Not connected. Call login first.");
4675
4675
  }
4676
4676
  const timeoutSecs = Math.min(Math.max(args?.timeout || 300, 10), 600);
4677
- const ARENA_MIN_X = 3086;
4678
- const ARENA_MAX_X = 3126;
4679
- const ARENA_MIN_Z = 3333;
4680
- const ARENA_MAX_Z = 3382;
4677
+ const ARENA_MIN_X = 3070;
4678
+ const ARENA_MAX_X = 3141;
4679
+ const ARENA_MIN_Z = 3317;
4680
+ const ARENA_MAX_Z = 3402;
4681
4681
  console.error(`[Kill Switch] Waiting for tournament to start (timeout: ${timeoutSecs}s)...`);
4682
4682
  const startTime = Date.now();
4683
4683
  const deadline = startTime + timeoutSecs * 1000;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kill-switch-mcp",
3
- "version": "1.1.4",
3
+ "version": "1.1.5",
4
4
  "description": "Kill Switch MCP Server — AI battle royale powered by Claude Code",
5
5
  "type": "module",
6
6
  "bin": {