Fix stage and attribute coming from character instead of UserCharacter

This commit is contained in:
Christopher O'Grady 2025-04-05 20:31:03 -04:00
parent a4f3b701e5
commit 076f6bfacf
2 changed files with 8 additions and 0 deletions

View File

@ -21,6 +21,8 @@ interface AdventureDao {
@Query(""" @Query("""
SELECT SELECT
uc.*, uc.*,
c.stage,
c.attribute,
c.sprite1 AS spriteIdle, c.sprite1 AS spriteIdle,
c.spritesWidth AS spriteWidth, c.spritesWidth AS spriteWidth,
c.spritesHeight AS spriteHeight, c.spritesHeight AS spriteHeight,

View File

@ -46,6 +46,8 @@ interface UserCharacterDao {
""" """
SELECT SELECT
uc.*, uc.*,
c.stage,
c.attribute,
c.sprite1 AS spriteIdle, c.sprite1 AS spriteIdle,
c.spritesWidth AS spriteWidth, c.spritesWidth AS spriteWidth,
c.spritesHeight AS spriteHeight, c.spritesHeight AS spriteHeight,
@ -66,6 +68,8 @@ interface UserCharacterDao {
""" """
SELECT SELECT
uc.*, uc.*,
c.stage,
c.attribute,
c.sprite1 AS spriteIdle, c.sprite1 AS spriteIdle,
c.spritesWidth AS spriteWidth, c.spritesWidth AS spriteWidth,
c.spritesHeight AS spriteHeight, c.spritesHeight AS spriteHeight,
@ -92,6 +96,8 @@ interface UserCharacterDao {
""" """
SELECT SELECT
uc.*, uc.*,
c.stage,
c.attribute,
c.sprite1 AS spriteIdle, c.sprite1 AS spriteIdle,
c.spritesWidth AS spriteWidth, c.spritesWidth AS spriteWidth,
c.spritesHeight AS spriteHeight, c.spritesHeight AS spriteHeight,