zappyzep/backend/src/plugins/Automod/functions/clearOldRecentActions.ts
2020-07-27 20:42:10 +03:00

10 lines
409 B
TypeScript

import { PluginData } from "knub";
import { AutomodPluginType } from "../types";
import { RECENT_ACTION_EXPIRY_TIME } from "../constants";
export function clearOldRecentActions(pluginData: PluginData<AutomodPluginType>) {
const now = Date.now();
pluginData.state.recentActions = pluginData.state.recentActions.filter(info => {
return info.context.timestamp + RECENT_ACTION_EXPIRY_TIME > now;
});
}