Merge pull request #483 from nofficalfs/PR-Enhancement-ShowMaxhandLimitInNodeintro

[Enhancement] 在武将的`nodeintro`显示武将的手牌上限
This commit is contained in:
Spmario233 2023-10-08 14:37:44 +08:00 committed by GitHub
commit a79c064adf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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;