diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2023-02-05 14:38:21 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2023-02-05 14:38:21 +0900 |
| commit | d65e5f67941e29718ab3f0191d3433aedcfdbfd5 (patch) | |
| tree | d5c17e15051e90dcec61d1f85837e33d2a0af5d9 /packages | |
| parent | tweak animation (diff) | |
| download | sharkey-d65e5f67941e29718ab3f0191d3433aedcfdbfd5.tar.gz sharkey-d65e5f67941e29718ab3f0191d3433aedcfdbfd5.tar.bz2 sharkey-d65e5f67941e29718ab3f0191d3433aedcfdbfd5.zip | |
単なるラッキーの獲得確立を調整
Diffstat (limited to 'packages')
| -rw-r--r-- | packages/frontend/src/init.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/frontend/src/init.ts b/packages/frontend/src/init.ts index 4227f5cf4a..64c252ce55 100644 --- a/packages/frontend/src/init.ts +++ b/packages/frontend/src/init.ts @@ -438,7 +438,7 @@ if ($i) { } window.setInterval(() => { - if (Math.floor(Math.random() * 10000) === 0) { + if (Math.floor(Math.random() * 20000) === 0) { claimAchievement('justPlainLucky'); } }, 1000 * 10); |