Add auto-repeat quest and memoir auto-sell
Build and Push Docker images to Docker Hub / build-and-push (push) Has been cancelled

This commit is contained in:
Ilya Groshev
2026-05-28 10:48:26 +03:00
parent c961fde8ac
commit 63df7d7055
19 changed files with 413 additions and 34 deletions
+10
View File
@@ -2,6 +2,16 @@ package model
import "fmt"
type QuestType int32
const (
QuestTypeUnknown QuestType = 0
QuestTypeMain QuestType = 1
QuestTypeEvent QuestType = 2
QuestTypeExtra QuestType = 3
QuestTypeBigHunt QuestType = 4
)
type QuestFlowType int32
const (