🩹 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: {
|
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: {
|
||||||
|
|
Loading…
Add table
Reference in a new issue