This commit is contained in:
cdle
2021-09-17 19:42:43 +08:00
parent df5831a2e4
commit 57e032668a
+2 -1
View File
@@ -5,7 +5,7 @@ import (
"time" "time"
) )
var Duration = time.Duration(sillyGirl.GetInt("duration", 5)) * time.Second var Duration time.Duration
func init() { func init() {
killp() killp()
@@ -20,4 +20,5 @@ func init() {
InitReplies() InitReplies()
initToHandleMessage() initToHandleMessage()
initSys() initSys()
Duration = time.Duration(sillyGirl.GetInt("duration", 5)) * time.Second
} }