enabling punctuation in ascii mode will allow capital letters

This commit is contained in:
Miodec 2023-06-06 17:48:28 +02:00
parent 01997442d8
commit 6e14d58d15
2 changed files with 3 additions and 1 deletions

View file

@ -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],
},
},

View file

@ -396,6 +396,9 @@ FunboxList.setFunboxFunctions("ascii", {
getWord(): string {
return Misc.getASCII();
},
punctuateWord(word: string): string {
return word;
},
});
FunboxList.setFunboxFunctions("specials", {