mirror of
https://github.com/p-stream/p-stream.git
synced 2026-04-18 05:01:30 +00:00
fix pirate easter egg chance
This commit is contained in:
parent
82c0201b91
commit
f127b5fbee
1 changed files with 1 additions and 1 deletions
|
|
@ -288,7 +288,7 @@ function ParticlesCanvas() {
|
|||
}
|
||||
|
||||
// Pirate easter egg
|
||||
const shouldShowPirate = Math.random() < 0.9; // 3%
|
||||
const shouldShowPirate = Math.random() < 0.075; // 7.5%
|
||||
if (shouldShowPirate) {
|
||||
imageOverride = [
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in a new issue