Update the way the QueryManager exports are structured to be more esm-y rather than Java-y

This commit is contained in:
Oliver 2025-11-19 21:18:42 -07:00
parent bb095a9b4e
commit df0c69c731
4 changed files with 187 additions and 177 deletions

View file

@ -1,6 +1,6 @@
import { QueryManager } from "../utils/QueryManager.mjs";
import { userActivity } from "../utils/QueryManager.mjs";
Hooks.on(`userConnected`, (user, connected) => {
if (user.isSelf) { return };
QueryManager.userActivity(user.id, connected);
userActivity(user.id, connected);
});