🩹 forgot to change from millisecs default to secs
This commit is contained in:
parent
21365d5ecf
commit
ef8b20984d
1 changed files with 3 additions and 3 deletions
|
@ -58,7 +58,7 @@ const guildSchema = new Schema<IGuild>(
|
|||
},
|
||||
timeout: {
|
||||
type: Number,
|
||||
default: 5000,
|
||||
default: 5,
|
||||
},
|
||||
workRate: {
|
||||
type: Number,
|
||||
|
@ -66,7 +66,7 @@ const guildSchema = new Schema<IGuild>(
|
|||
},
|
||||
workTimeout: {
|
||||
type: Number,
|
||||
default: 900000,
|
||||
default: 900,
|
||||
},
|
||||
},
|
||||
embeds: {
|
||||
|
@ -118,7 +118,7 @@ const guildSchema = new Schema<IGuild>(
|
|||
},
|
||||
timeout: {
|
||||
type: Number,
|
||||
default: 5000,
|
||||
default: 5,
|
||||
},
|
||||
},
|
||||
welcome: {
|
||||
|
|
Loading…
Add table
Reference in a new issue