Merge pull request #27 from cfogrady/FixStageAndAttributeFromCharacter

Fix stage and attribute coming from character instead of UserCharacter
This commit is contained in:
nacabaro 2025-04-08 15:35:13 +02:00 committed by GitHub
commit d749af0a9c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 8 additions and 0 deletions

View File

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

View File

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