diff options
| author | stonedDiscord <Tukz@gmx.de> | 2026-01-01 16:09:35 +0100 |
|---|---|---|
| committer | stonedDiscord <Tukz@gmx.de> | 2026-01-01 16:09:35 +0100 |
| commit | 2fda71ffa3b1dc1b82f5ab8c02a81a5b8a80fcf9 (patch) | |
| tree | 5dc4c616dcc24d7cab48689ab4da01aca1567041 | |
| parent | 7c7d2349c59c623130c782d03534bfa2ca554bd7 (diff) | |
constant
| -rw-r--r-- | webAO/viewport/constants/defaultChatMsg.ts | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/webAO/viewport/constants/defaultChatMsg.ts b/webAO/viewport/constants/defaultChatMsg.ts index fa25b33..67c60b8 100644 --- a/webAO/viewport/constants/defaultChatMsg.ts +++ b/webAO/viewport/constants/defaultChatMsg.ts @@ -1,6 +1,8 @@ -import { UPDATE_INTERVAL } from "../../client"; import { ChatMsg } from "../interfaces/ChatMsg"; +// Define UPDATE_INTERVAL locally to avoid circular dependency +const UPDATE_INTERVAL = 60; + export const defaultChatMsg = { content: "", objection: 0, |
