merge: 최신 main을 외교 권한 복수 임명 수정에 다시 통합한다
This commit is contained in:
@@ -64,7 +64,7 @@ const form = ref<JoinForm>({
|
||||
strength: 0,
|
||||
intel: 0,
|
||||
character: 'Random',
|
||||
pic: true,
|
||||
pic: false,
|
||||
iconId: undefined,
|
||||
inheritBonusStat: [0, 0, 0],
|
||||
});
|
||||
@@ -437,6 +437,7 @@ const loadConfig = async () => {
|
||||
} else {
|
||||
form.value.name = config.rules.allowCustomName ? config.user.displayName || '' : '무작위';
|
||||
form.value.iconId = config.user.icons.find((icon) => icon.picture === config.user.preferredPicture)?.id;
|
||||
form.value.pic = form.value.iconId !== undefined;
|
||||
applyBalancedStats();
|
||||
}
|
||||
} catch (err) {
|
||||
|
||||
@@ -429,7 +429,7 @@ onBeforeUnmount(() => {
|
||||
<th class="legacy-bg1">전콘 선택</th>
|
||||
<td class="pool-icon-choice">
|
||||
<label>
|
||||
<input v-model="selectedIconId" type="radio" value="" /> 선택한 장수 전콘
|
||||
<input v-model="selectedIconId" type="radio" value="" /> 기본 아이콘
|
||||
</label>
|
||||
<label v-for="icon in config.user.icons" :key="icon.id">
|
||||
<input v-model="selectedIconId" type="radio" :value="icon.id" />
|
||||
|
||||
Reference in New Issue
Block a user