Skip to content

Commit

Permalink
refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
wow890209 committed Oct 1, 2023
1 parent 558aa42 commit e09292d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ val MemoryQuestRepository.firstMessageActionQuest: Quest
)
)

val MemoryQuestRepository.SendContainsImageMessageInEngineerLifeChannelQuest: Quest
val MemoryQuestRepository.sendContainsImageMessageInEngineerLifeChannelQuest: Quest
get() = findById(4) ?: save(
Quest(
id = 4,
Expand Down Expand Up @@ -177,7 +177,7 @@ val MemoryQuestRepository.SendContainsImageMessageInEngineerLifeChannelQuest: Qu
)
)

val MemoryQuestRepository.ReplyToAnyoneInCareerAdvancementTopicChannelQuest: Quest
val MemoryQuestRepository.replyToAnyoneInCareerAdvancementTopicChannelQuest: Quest
get() = findById(5) ?: save(
Quest(
id = 5,
Expand Down Expand Up @@ -293,7 +293,7 @@ val MemoryQuestRepository.flagPostQuest: Quest
)
)

val MemoryQuestRepository.SendMessageInVoiceChannelQuest: Quest
val MemoryQuestRepository.sendMessageInVoiceChannelQuest: Quest
get() = findById(8) ?: save(
Quest(
id = 8,
Expand Down Expand Up @@ -333,7 +333,7 @@ val MemoryQuestRepository.SendMessageInVoiceChannelQuest: Quest
)
)

val MemoryQuestRepository.JoinActivityQuest: Quest
val MemoryQuestRepository.joinActivityQuest: Quest
get() = findById(9) ?: save(
Quest(
id = 9,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@ class MemoryQuestRepository(val wsa: WsaDiscordProperties) : QuestRepository {
unlockAcademyQuest
selfIntroductionQuest
firstMessageActionQuest
SendContainsImageMessageInEngineerLifeChannelQuest
ReplyToAnyoneInCareerAdvancementTopicChannelQuest
sendContainsImageMessageInEngineerLifeChannelQuest
replyToAnyoneInCareerAdvancementTopicChannelQuest
watchVideoQuest
flagPostQuest
SendMessageInVoiceChannelQuest
JoinActivityQuest
sendMessageInVoiceChannelQuest
joinActivityQuest
quizQuest
}

Expand Down

0 comments on commit e09292d

Please sign in to comment.