Merge pull request #1378 from PZ157/PR-Branch

bugfix
This commit is contained in:
Spmario233 2024-05-21 15:04:26 +08:00 committed by GitHub
commit 55d513c53f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 1 additions and 2 deletions

View File

@ -99,7 +99,6 @@ const skills = {
content() {
player
.moveCard(
true,
game.filterPlayer(i => {
return i.group == "qun";
}),

View File

@ -224,7 +224,7 @@ export const optionsMenu = function (connectMenu) {
for (var i in lib.character) {
if (lib.character[i][3].length) list.push([i, lib.translate[i]]);
}
if (!list.length) return;
list.sort(function (a, b) {
a = a[0];
b = b[0];