We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7608d2e commit 9cc5080Copy full SHA for 9cc5080
src/minecraft/constants/words.js
@@ -268,7 +268,7 @@ function getRandomWord(length) {
268
const filteredWords = words.filter((word) => word.length == length);
269
270
if (filteredWords.length === 0) {
271
- throw `No words found with the ${length} characters.`;
+ throw `No words found with ${length} characters.`;
272
}
273
274
return filteredWords[Math.floor(Math.random() * filteredWords.length)];
0 commit comments