diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2018-08-18 04:22:00 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2018-08-18 04:22:00 +0900 |
| commit | e922d8904c60857b57f09488190212cfacc7e502 (patch) | |
| tree | ed4441af78c5b91e422609802456e8eec64ca512 /src/client/app/common/scripts | |
| parent | Update rate limit setting (diff) | |
| parent | Merge pull request #2302 from syuilo/kao-to-faces (diff) | |
| download | misskey-e922d8904c60857b57f09488190212cfacc7e502.tar.gz misskey-e922d8904c60857b57f09488190212cfacc7e502.tar.bz2 misskey-e922d8904c60857b57f09488190212cfacc7e502.zip | |
Merge branch 'master' of https://github.com/syuilo/misskey
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)]; |