mirror of
https://github.com/sussy-code/smov.git
synced 2025-01-01 16:37:39 +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
|
// Pirate easter egg
|
||||||
const shouldShowPirate = Math.random() < 0.9; // 3%
|
const shouldShowPirate = Math.random() < 0.075; // 7.5%
|
||||||
if (shouldShowPirate) {
|
if (shouldShowPirate) {
|
||||||
imageOverride = [
|
imageOverride = [
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue