mirror of
https://github.com/ZeppelinBot/Zeppelin.git
synced 2025-07-07 19:17:19 +00:00
14 lines
413 B
TypeScript
14 lines
413 B
TypeScript
import { GuildPluginData } from "knub";
|
|
import { RecentActionType, SpamPluginType } from "../types.js";
|
|
|
|
export function addRecentAction(
|
|
pluginData: GuildPluginData<SpamPluginType>,
|
|
type: RecentActionType,
|
|
userId: string,
|
|
actionGroupId: string,
|
|
extraData: any,
|
|
timestamp: number,
|
|
count = 1,
|
|
) {
|
|
pluginData.state.recentActions.push({ type, userId, actionGroupId, extraData, timestamp, count });
|
|
}
|