🩹 forgot to change from millisecs default to secs

This commit is contained in:
Axel Olausson Holtenäs 2022-07-05 01:36:16 +02:00
parent 21365d5ecf
commit ef8b20984d
No known key found for this signature in database
GPG key ID: 7BF6826B76382CBA

View file

@ -58,7 +58,7 @@ const guildSchema = new Schema<IGuild>(
}, },
timeout: { timeout: {
type: Number, type: Number,
default: 5000, default: 5,
}, },
workRate: { workRate: {
type: Number, type: Number,
@ -66,7 +66,7 @@ const guildSchema = new Schema<IGuild>(
}, },
workTimeout: { workTimeout: {
type: Number, type: Number,
default: 900000, default: 900,
}, },
}, },
embeds: { embeds: {
@ -118,7 +118,7 @@ const guildSchema = new Schema<IGuild>(
}, },
timeout: { timeout: {
type: Number, type: Number,
default: 5000, default: 5,
}, },
}, },
welcome: { welcome: {