mirror of
https://github.com/p-stream/p-stream.git
synced 2026-04-19 20:42:05 +00:00
Fix kitty easter egg chances
This commit is contained in:
parent
341c253d6e
commit
d7e20c81b7
1 changed files with 1 additions and 1 deletions
|
|
@ -184,7 +184,7 @@ function ParticlesCanvas() {
|
|||
}
|
||||
|
||||
// Kitty easter egg
|
||||
const shouldShowCat = Math.floor(Math.random() * 90) > 50;
|
||||
const shouldShowCat = Math.floor(Math.random() * 83) > 50;
|
||||
if (shouldShowCat) {
|
||||
imageOverride = [
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in a new issue