horse, mdb: include id in lobby conversations
This commit is contained in:
+8
-7
@@ -89,13 +89,14 @@ func Umas(ctx context.Context, db *sqlitex.Pool) ([]horse.Uma, error) {
|
||||
func Conversations(ctx context.Context, db *sqlitex.Pool) ([]horse.Conversation, error) {
|
||||
return load(ctx, db, make([]horse.Conversation, 0, 1024), conversationSQL, func(s *sqlite.Stmt) horse.Conversation {
|
||||
return horse.Conversation{
|
||||
CharacterID: horse.CharacterID(s.ColumnInt(0)),
|
||||
Number: s.ColumnInt(1),
|
||||
Location: horse.LobbyConversationLocationID(s.ColumnInt(2)),
|
||||
Chara1: horse.CharacterID(s.ColumnInt(3)),
|
||||
Chara2: horse.CharacterID(s.ColumnInt(4)),
|
||||
Chara3: horse.CharacterID(s.ColumnInt(5)),
|
||||
ConditionType: s.ColumnInt(6),
|
||||
ID: s.ColumnInt32(0),
|
||||
CharacterID: horse.CharacterID(s.ColumnInt(1)),
|
||||
Number: s.ColumnInt(2),
|
||||
Location: horse.LobbyConversationLocationID(s.ColumnInt(3)),
|
||||
Chara1: horse.CharacterID(s.ColumnInt(4)),
|
||||
Chara2: horse.CharacterID(s.ColumnInt(5)),
|
||||
Chara3: horse.CharacterID(s.ColumnInt(6)),
|
||||
ConditionType: s.ColumnInt(7),
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user