[M] Rename field

This commit is contained in:
Azalea
2024-02-25 17:21:50 -05:00
parent 096648b2d7
commit 3d716a516a
12 changed files with 45 additions and 51 deletions

View File

@@ -108,7 +108,7 @@ class CardGameService(
"maimai" -> maimai.findByCard_ExtId(crd.extId).getOrNull()?.let {
maimai.save(it.apply { card = crd.aquaUser!!.ghostCard })
}
"maimai2" -> maimai2.findByCard_ExtId(crd.extId).getOrNull()?.let {
"maimai2" -> maimai2.findByCardExtId(crd.extId).getOrNull()?.let {
maimai2.save(it.apply { card = crd.aquaUser!!.ghostCard })
}
"chusan" -> chusan.findByCard_ExtId(crd.extId).getOrNull()?.let {
@@ -136,7 +136,7 @@ class CardGameService(
"lastLogin" to it.lastPlayDate,
)
},
"maimai2" to maimai2.findByCard_ExtId(card.extId).getOrNull()?.let {
"maimai2" to maimai2.findByCardExtId(card.extId).getOrNull()?.let {
mapOf(
"name" to it.userName,
"rating" to it.playerRating,