1. 문제점


전설 소집 후 100년이 지나도 전설 소집(warrior_lodge_legendary_gathering) 디시전이 비활성화된 상태로 남아 있음



2. 원인


decisions - hf_warrior_lodge_decisions.txt


allow = {

     has_society_currency_major_trigger = yes

is_inaccessible_trigger = no

     custom_tooltip = {

text = legendary_gathering_cd_tt

     society = { NOT = { has_flag = used_legendary_gathering } }

}

}


society에 걸려있는 used_legendary_gathering 플래그가 안 지워짐


아마도


clr_flag = used_legendary_gathering X

society = { clr_flag = used_legendary_gathering } O


clr_flag를 바로 쓰면 안되고 society = { clr_flag = { } }의 형태로 써야 하는걸 실수로 clr_flag의 형태로 쓴 것 같음



3. 해결책


decisionshf_warrior_lodge_decisions.txt


warrior_lodge_legendary_gathering_clear = {

     only_playable = yes

is_high_prio = yes

potential = {

     has_dlc = "Holy Fury"

is_playable = yes

is_adult = yes

     is_member_of_any_warrior_lodge_trigger = yes

     society_rank == 4

ai = no

}

allow = {

is_inaccessible_trigger = no

     custom_tooltip = {

     text = legendary_gathering_cd_tt

     }

    }

effect = {

     sound_effect = pagan_warhorn

     society = { clr_flag = used_legendary_gathering }

     society = { clr_flag = block_society_progress }

     }

revoke_allowed = {

     always = no

     }

ai_will_do = {

factor = 0

}

}



라는 디시전을 적당히 넣어주고 수동으로 플래그를 지워주면 되겠습니다


누르면 나팔소리와 함께 전설 소집 100년 대기 플래그하고, 레전드 미터 진행률 봉인 플래그를 같이 지워줌



제대로 된 공식 해결책이 나올 때까지 미봉책으로 사용할만 함