diff --git a/src/shared/builtin/types/players.ts b/src/shared/builtin/types/players.ts index 84134796..b1374dd2 100644 --- a/src/shared/builtin/types/players.ts +++ b/src/shared/builtin/types/players.ts @@ -44,7 +44,7 @@ export const PlayersType = TypeBuilder.create(CommanderType.Players) .validate(t.array(isPlayer)) .transform((text, executor) => { let players: Player[] = []; - for (const [part] of text.gmatch("[@%w%.%*]+")) { + for (const [part] of text.gmatch("[@_%w%.%*]+")) { const textPart = part as string; if (textPart === "@all" || textPart === "*") {