Skip to content

Commit 68a9ecf

Browse files
authored
修改了两处错误的文案 (#481)
1 parent 57404b2 commit 68a9ecf

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

plugin/score/sign_in.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ func init() {
5858
money := wallet.GetWalletOf(uid)
5959
ctx.SendChain(message.At(uid), message.Text("你的钱包当前有", money, "ATRI币"))
6060
})
61-
engine.OnFullMatch("2签到").Limit(ctxext.LimitByUser).SetBlock(true).
61+
engine.OnFullMatch("签到").Limit(ctxext.LimitByUser).SetBlock(true).
6262
Handle(func(ctx *zero.Ctx) {
6363
uid := ctx.Event.UserID
6464
now := time.Now()
@@ -78,7 +78,7 @@ func init() {
7878
}
7979
return
8080
case siUpdateTimeStr != today:
81-
// 如果是夸天签到就请数据
81+
// 如果是跨天签到就清数据
8282
err := sdb.InsertOrUpdateSignInCountByUID(uid, 0)
8383
if err != nil {
8484
ctx.SendChain(message.Text("ERROR: ", err))
@@ -95,7 +95,7 @@ func init() {
9595
level := sdb.GetScoreByUID(uid).Score + 1
9696
if level > SCOREMAX {
9797
level = SCOREMAX
98-
ctx.SendChain(message.At(uid), message.Text("你的登记已经达到上限"))
98+
ctx.SendChain(message.At(uid), message.Text("你的等级已经达到上限"))
9999
}
100100
err = sdb.InsertOrUpdateScoreByUID(uid, level)
101101
if err != nil {

0 commit comments

Comments
 (0)