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;