summaryrefslogtreecommitdiff
path: root/src/client/app/common/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'src/client/app/common/scripts')
-rw-r--r--src/client/app/common/scripts/get-kao.ts8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/client/app/common/scripts/get-kao.ts b/src/client/app/common/scripts/get-kao.ts
index ca7cebaebc..58857edfe1 100644
--- a/src/client/app/common/scripts/get-kao.ts
+++ b/src/client/app/common/scripts/get-kao.ts
@@ -1,6 +1,8 @@
-export default () => [
+const kaos = [
'(=^・・^=)',
'v(\'ω\')v',
'🐡( \'-\' 🐡 )フグパンチ!!!!',
- '🖕(´・_・`)🖕'
-][Math.floor(Math.random() * 4)];
+ '🖕(´・_・`)🖕',
+];
+
+export default () => kaos[Math.floor(Math.random() * kaos.length)];