updated version comment

This commit is contained in:
OrchidtheDev 2026-01-15 09:45:57 -06:00 committed by GitHub
parent 63b6bddd69
commit ac73173022
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -1,4 +1,4 @@
/*Version 1.2.0 Pseudorandom world generator*/
/*Version 1.2.1 Pseudorandom world generator*/
function pseudorandom(key, num, max = 1){
return (Math.log(key)*(num*Math.log(1625.4986772154357))) % max;
};