diff options
| author | Aya Morisawa <AyaMorisawa4869@gmail.com> | 2018-08-18 04:13:25 +0900 |
|---|---|---|
| committer | Aya Morisawa <AyaMorisawa4869@gmail.com> | 2018-08-18 04:13:25 +0900 |
| commit | 41cf856e263f48570555513f7d3ec78370b1f6a2 (patch) | |
| tree | 3b4689019eecfabc5c5c2779f7fb3d1ced3fe64e /src/client/app/common/scripts | |
| parent | :art: (diff) | |
| download | sharkey-41cf856e263f48570555513f7d3ec78370b1f6a2.tar.gz sharkey-41cf856e263f48570555513f7d3ec78370b1f6a2.tar.bz2 sharkey-41cf856e263f48570555513f7d3ec78370b1f6a2.zip | |
Fix #2301
Diffstat (limited to 'src/client/app/common/scripts')
| -rw-r--r-- | src/client/app/common/scripts/get-face.ts (renamed from src/client/app/common/scripts/get-kao.ts) | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/app/common/scripts/get-kao.ts b/src/client/app/common/scripts/get-face.ts index 2c9280c9b6..79cf7a1be4 100644 --- a/src/client/app/common/scripts/get-kao.ts +++ b/src/client/app/common/scripts/get-face.ts @@ -1,4 +1,4 @@ -const kaos = [ +const faces = [ '(=^・・^=)', 'v(\'ω\')v', '🐡( \'-\' 🐡 )フグパンチ!!!!', @@ -7,4 +7,4 @@ const kaos = [ '(Δ・x・Δ)' ]; -export default () => kaos[Math.floor(Math.random() * kaos.length)]; +export default () => faces[Math.floor(Math.random() * faces.length)]; |