mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2025-10-18 03:26:07 +08:00
enabling punctuation in ascii mode will allow capital letters
This commit is contained in:
parent
01997442d8
commit
6e14d58d15
2 changed files with 3 additions and 1 deletions
|
@ -95,7 +95,6 @@ const list: MonkeyTypes.FunboxMetadata[] = [
|
|||
info: "Where was the ampersand again?. Only ASCII characters.",
|
||||
properties: ["ignoresLanguage", "noLetters", "unspeakable"],
|
||||
forcedConfig: {
|
||||
punctuation: [false],
|
||||
numbers: [false],
|
||||
},
|
||||
},
|
||||
|
|
|
@ -396,6 +396,9 @@ FunboxList.setFunboxFunctions("ascii", {
|
|||
getWord(): string {
|
||||
return Misc.getASCII();
|
||||
},
|
||||
punctuateWord(word: string): string {
|
||||
return word;
|
||||
},
|
||||
});
|
||||
|
||||
FunboxList.setFunboxFunctions("specials", {
|
||||
|
|
Loading…
Add table
Reference in a new issue