Skip to content

Commit

Permalink
Merge pull request #5 from syspro86:scan
Browse files Browse the repository at this point in the history
최초스캔전일 경우 not null 컬럼에 - 세팅
  • Loading branch information
syspro86 authored Jun 21, 2023
2 parents ec000e4 + fd727b9 commit 5be5300
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ public void updatePlayerTalentTimestamp(String realm, String name, long timestam
talent.setPlayerRealm(realm);
talent.setPlayerName(name);
talent.setSpecId(0);
talent.setTalentCode("-");
talent.setLastUpdateTs(timestamp);
talentRepo.save(talent);
} else {
Expand All @@ -76,6 +77,8 @@ public void updatePlayerTalentTimestamp(String realm, String name, long timestam
MythicPlayer mp = new MythicPlayer();
mp.setPlayerRealm(realm);
mp.setPlayerName(name);
mp.setClassName("-");
mp.setSpecName("-");
return mp;
});
player.setLastUpdateTs(timestamp);
Expand Down

0 comments on commit 5be5300

Please sign in to comment.