Ensure the compatibility, and fix the error when clicking again on a identity card.

This commit is contained in:
Tipx-L 2023-10-26 23:08:31 -07:00
parent 832cf82220
commit 810ca75389
2 changed files with 3 additions and 3 deletions

View File

@ -167,9 +167,8 @@ game.import('character',function(lib,game,ui,get,ai,_status){
'step 0'
var list=lib.config.mode_config.identity.identity.lastItem.slice();
list.removeArray(game.filterPlayer().map(i=>{
let identity=i.identity;
if(identity=='mingzhong') identity='zhong';
return identity;
var identity=i.identity;
return identity=='mingzhong'?'zhong':identity;
})).unique();
player.chooseButton([
'###炼魄:请选择一个身份###<div class="text center">你选择的身份对应的阵营角色数于本轮内视为+1</div>',

View File

@ -43447,6 +43447,7 @@
//创建身份牌实例
identityCard:function(identity,position,noclick){
const card=ui.create.card(position,'noclick',noclick);
card.removeEventListener(lib.config.touchscreen?'touchend':'click',ui.click.card);
card.classList.add('button');
card._customintro=uiintro=>uiintro.add(`${get.translation(`${identity}${2}`)}的身份牌`);
const fileName=`image/card/identity_${identity}.jpg`;