mirror of
https://github.com/sussy-code/smov.git
synced 2024-12-20 14:37:43 +01: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