full = false to prevent IDE complaints

Co-authored-by: Wolfsblvt <wolfsblvt@gmail.com>
This commit is contained in:
Succubyss 2025-02-01 15:44:14 -06:00 committed by GitHub
parent a1abe14e02
commit d26f99b496
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -296,7 +296,7 @@ export function getGroupNames() {
* @param {Boolean} full Whether to return a key-value object containing extra data
* @returns {number|Object} 0-based character ID or key-value object if full is true
*/
export function findGroupMemberId(arg, full) {
export function findGroupMemberId(arg, full = false) {
arg = arg?.trim();
if (!arg) {