feat(view): show player handcardLimit in nodeintro.

This commit is contained in:
Rintim 2023-10-07 19:24:43 +08:00
parent d8ffa36703
commit b64b9faf5a
No known key found for this signature in database
GPG Key ID: BE9E1EA615BACFCF
1 changed files with 1 additions and 1 deletions

View File

@ -59120,7 +59120,7 @@
}
tr.appendChild(td);
td=document.createElement('td');
td.innerHTML=node.countCards('h');
td.innerHTML=`${node.countCards('h')}/${node.getHandcardLimit()}`;
tr.appendChild(td);
td=document.createElement('td');
td.innerHTML=node.phaseNumber;