mirror of
https://github.com/p-stream/p-stream.git
synced 2026-03-17 00:06:46 +00:00
Fix proabilty on gangster
This commit is contained in:
parent
924da37b4e
commit
a9da2d5ef6
1 changed files with 1 additions and 1 deletions
|
|
@ -348,7 +348,7 @@ function ParticlesCanvas() {
|
|||
}
|
||||
|
||||
// Gangster easter egg
|
||||
const shouldShowCowboy = Math.random() < 0.98; // 3%
|
||||
const shouldShowCowboy = Math.random() < 0.5; // 5%
|
||||
if (shouldShowCowboy) {
|
||||
imageOverride = [
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in a new issue