Skip to content

Commit

Permalink
fix(core): 修复复读失效的问题
Browse files Browse the repository at this point in the history
  • Loading branch information
diyigemt committed Jul 22, 2023
1 parent 31caa9d commit 4132c03
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion arona-core/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ plugins {
}

group = "net.diyigemt.arona"
version = "1.1.0"
version = "1.1.1"
val miraiVersion = "2.11.1"
val exposedVersion = "0.38.2"
val sqliteVersion = "3.36.0.3"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ object GroupRepeaterHandler: AronaEventHandler<GroupMessageEvent>, AronaGroupSer
if (count >= AronaRepeatConfig.times) {
event.subject.sendMessage(event.message)
map[group] = Triple(now, 0, 0)
} else {
map[group] = Triple(now, senderId, count)
}
} else {
map[group] = Triple(now, senderId, 1)
Expand Down
4 changes: 2 additions & 2 deletions arona-core/src/main/resources/plugin.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
id: "net.diyigemt.arona"
version: "1.1.0"
version: "1.1.1"
name: "blue-archive-arona"
author: "diyigemt"
main: "net.diyigemt.arona"
info: "BA攻略插件"
info: "BA攻略插件"

0 comments on commit 4132c03

Please sign in to comment.