Skip to content

Commit

Permalink
math fix
Browse files Browse the repository at this point in the history
  • Loading branch information
MapleAtMorning committed Jun 3, 2024
1 parent e3c567f commit 437d5e7
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions js/homepage.js
Original file line number Diff line number Diff line change
Expand Up @@ -112,8 +112,7 @@ delayedLoop(timeBetweenRotate);
const huma = document.getElementById("hiddenhuma")

function hidehuma(){
let i = Math.round(Math.random() * 25)
console.log(i)
let i = Math.floor(Math.random() * 25 + 1)
if (i == 1){
huma.style.display = "block"
}
Expand Down

0 comments on commit 437d5e7

Please sign in to comment.