Implement Subjugation Quests rewards and battle report
Build and Push Docker images to Docker Hub / build-and-push (push) Has been cancelled

This commit is contained in:
Ilya Groshev
2026-05-13 11:30:56 +03:00
parent 44a03d222b
commit 00817684ef
9 changed files with 297 additions and 76 deletions
+6 -5
View File
@@ -57,11 +57,12 @@ func init() {
for _, id := range ids {
st := user.BigHuntStatuses[int32(id)]
records = append(records, map[string]any{
"userId": user.UserId,
"bigHuntBossQuestId": int32(id),
"dailyChallengeCount": st.DailyChallengeCount,
"latestChallengeDatetime": st.LatestChallengeDatetime,
"latestVersion": st.LatestVersion,
"userId": user.UserId,
"bigHuntBossQuestId": int32(id),
"dailyChallengeCount": st.DailyChallengeCount,
"latestChallengeDatetime": st.LatestChallengeDatetime,
"lastDailyRewardReceivedDayVersion": st.LastDailyRewardReceivedDayVersion,
"latestVersion": st.LatestVersion,
})
}
s, _ := utils.EncodeJSONMaps(records...)