Merge branch 'libccy:PR-Branch' into PR-Branch

This commit is contained in:
157 2024-04-07 19:29:25 +08:00 committed by GitHub
commit 0bbbc03546
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -2628,7 +2628,7 @@ game.import('character',function(lib,game,ui,get,ai,_status){
if(same.length){
for(var suit of suits){
if(same.some(card=>get.suit(card,false)==suit)){
list.push([get.type(name),get.translation(suit),name,undefined,suit]);
list.push([suit,'',name,undefined,suit]);
}
}
}
@ -2637,7 +2637,7 @@ game.import('character',function(lib,game,ui,get,ai,_status){
if(same.length){
for(var suit of suits){
if(same.some(card=>get.suit(card,false)==suit)){
list.push([get.type(name),get.translation(suit),name,nature,suit]);
list.push([suit,'',name,nature,suit]);
}
}
}