mirror of
https://github.com/ZeppelinBot/Zeppelin.git
synced 2025-03-15 05:41:51 +00:00
Fix slowmodes longer than 6h
This commit is contained in:
parent
3643c319d4
commit
160c31baf7
1 changed files with 1 additions and 1 deletions
|
@ -7,7 +7,7 @@ import { ZeppelinPlugin } from "./ZeppelinPlugin";
|
|||
import { SavedMessage } from "../data/entities/SavedMessage";
|
||||
import { GuildSavedMessages } from "../data/GuildSavedMessages";
|
||||
|
||||
const NATIVE_SLOWMODE_LIMIT = 6 * 60 * 60 * 1000; // 6 hours
|
||||
const NATIVE_SLOWMODE_LIMIT = 6 * 60 * 60; // 6 hours
|
||||
|
||||
interface ISlowmodePluginConfig {
|
||||
use_native_slowmode: boolean;
|
||||
|
|
Loading…
Add table
Reference in a new issue