mirror of
https://github.com/scratchfoundation/scratch-vm.git
synced 2024-12-23 14:32:59 -05:00
Replace all non-space chars with meow
This commit is contained in:
parent
dfd4735871
commit
3bfc422ce0
1 changed files with 1 additions and 1 deletions
|
@ -465,7 +465,7 @@ class Scratch3Text2SpeechBlocks {
|
|||
|
||||
// @todo localize this?
|
||||
if (state.voiceId === KITTEN_ID) {
|
||||
words = words.replace(/\w+/g, 'meow');
|
||||
words = words.replace(/\S+/g, 'meow');
|
||||
}
|
||||
|
||||
// Build up URL
|
||||
|
|
Loading…
Reference in a new issue