summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/web/app/common/scripts/text-compiler.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/web/app/common/scripts/text-compiler.js b/src/web/app/common/scripts/text-compiler.js
index 41f4966682..e08ef74417 100644
--- a/src/web/app/common/scripts/text-compiler.js
+++ b/src/web/app/common/scripts/text-compiler.js
@@ -34,7 +34,8 @@ module.exports = function(tokens, canBreak, escape) {
}).join('');
if (me && me.data && me.data.nya) {
- text = text.replace(/な/g, 'にゃ');
+ text = text.replace(/な/g, 'にゃ')
+ .replace(/にゃでにゃで/g, 'なでなで');
}
return text;