From cdb8d5f764a4b251491899fba2dcd77b44abf3c9 Mon Sep 17 00:00:00 2001 From: PHIDIAS Date: Fri, 15 Aug 2025 19:20:41 +0900 Subject: [PATCH] . --- controller.ts | 4 ++-- instance.ts | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/controller.ts b/controller.ts index 86d9ace..2a2fdde 100644 --- a/controller.ts +++ b/controller.ts @@ -1,8 +1,8 @@ import { Client, GatewayIntentBits } from 'discord.js'; import fetch from 'node-fetch'; import { BaseControllerPlugin } from '@clusterio/controller'; -import { InstanceActionEvent } from './info.ts'; -import { ChatEvent } from './message.ts'; +import { InstanceActionEvent } from './info'; +import { ChatEvent } from './message'; const MAX_DISCORD_MESSAGE_LENGTH = 1950; const MIN_CONFIDENCE_SCORE = 10.0; diff --git a/instance.ts b/instance.ts index 934c5de..4a5cc44 100644 --- a/instance.ts +++ b/instance.ts @@ -1,6 +1,6 @@ import * as lib from "@clusterio/lib"; import { BaseInstancePlugin } from "@clusterio/host"; -import { InstanceActionEvent } from "./info.ts"; +import { InstanceActionEvent } from "./info"; type MessageQueueItem = [string, unknown]; // [action, content] type ControllerEvent = 'connect' | 'disconnect' | string;