공지 정렬 수정

히스토리 caliverse_meta_data 제거
This commit is contained in:
2025-05-23 16:00:05 +09:00
parent 3ca0ea4bb5
commit e8e49640de
16 changed files with 182 additions and 163 deletions

View File

@@ -215,6 +215,25 @@ public enum LogAction {
UserLogout("유저 로그아웃"),
UserLogoutSnapShot("게임 로그아웃 스냅샷"),
UserReport("유저 신고"),
ItemDestroyByUser("아이템 제거 (사용자에 의해)"),
ItemDestoryByExpiration("아이템 제거 (기간만료에 의해)"),
// 퀘스트 관련
QuestMainAssign("퀘스트 메인 수락"),
// 비컨 상점 관련
BeaconShopRegisterItem("비컨 상점에 아이템 등록"),
BeaconShopReturnItem("비컨 상점 아이템 회수"),
BeaconShopPurchaseItem("비컨 상점에서 아이템 구매"),
BeaconShopReceivePaymentForSales("비컨 상점 판매한 아이템 정산 받기"),
BeaconShopSearchItem("비컨 상점 아이템 검색"),
BeaconShopUpdateDailyCount("비컨 상점 하루 제한 업데이트"),
BeaconShopDeleteRecord("비컨 상점 기록 영수증 제거"),
BeaconShopDeactiveItems("비컨 상점 아이템 비활성화"),
// 치트 명령어 관련
CheatCommandBeaconShopItemTimeChange("치트로 인한 비컨 상점 시간 변경"),
CheatCommandDailyLimitInit("치트로 인한 비컨 상점 일일 횟수 초기화"),
Warp("워프");

View File

@@ -74,6 +74,16 @@ public enum LogDomain {
BattleRoomJoin("전투 입장"),
BattleDead("전투 죽음"),
BattleRound("전투 라운드"),
BeaconShopSoldRecord("비컨 상점 영수증"),
BeaconShopSoldPrice("비컨 상점 정산금"),
// BrokerApi 하위 도메인들
PlanetProviderAuth("플래닛 컨텐츠 제공자 인증"),
PlanetUserAuth("플래닛 유저 인증"),
PlanetItemExchange("플래닛 아이템 교환"),
// IgmApi (전체 도메인이 누락됨)
IgmApi("IgmApi"),
BattleSnapshot("전투 스냅샷");
private final String description;