Skip to content

Commit

Permalink
chore: revert back to 25% flip chance
Browse files Browse the repository at this point in the history
  • Loading branch information
ryantanrk committed Jul 3, 2023
1 parent 2e5627b commit 72bad16
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mrbeastify.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ function applyOverlayToThumbnails() {
for (let i = 0; i < loops; i++) {
// Get overlay image URL from your directory
const overlayImageUrl = getRandomImageFromDirectory();
const flip = Math.random() < 0.5; // 50% chance to flip the image
const flip = Math.random() < 0.25; // 25% chance to flip the image
applyOverlay(thumbnailElement, overlayImageUrl, flip);
}
});
Expand Down

0 comments on commit 72bad16

Please sign in to comment.