修复const

This commit is contained in:
kuangshen04 2024-01-22 00:24:37 +08:00
parent 9019cd41c1
commit a3a09af07f
1 changed files with 1 additions and 1 deletions

View File

@ -334,7 +334,7 @@ game.import('character',function(lib,game,ui,get,ai,_status){
const player=map.player; const player=map.player;
let result; let result;
result=yield player.chooseTarget(get.prompt2('dcdingji')).set('ai',target=>{ result=yield player.chooseTarget(get.prompt2('dcdingji')).set('ai',target=>{
const att=get.attitude(get.player(),target)/2; let att=get.attitude(get.player(),target)/2;
const delta=5-target.countCards('h'); const delta=5-target.countCards('h');
let fix=1; let fix=1;
const hs=target.getCards('h'); const hs=target.getCards('h');