Changed Rarity

This commit is contained in:
2025-10-29 16:47:37 -05:00
parent ffe9bc6156
commit ab79e95734

View File

@ -91,10 +91,10 @@ function createEntity(x, y, vx, vy, ax, ay, rot, rotv, type, id=0, iframes=Math.
function getRandomType(){
let rand = Math.random();
if (rand > 0.955){
if (rand > 0.99){
if(Settings.devMode) console.log("Comet made");
return entityTypes.COMET;
}if(rand > 0.4){
}if(rand > 0.5){
return entityTypes.METERORITE_SMALL;
}else{
return entityTypes.METERORITE_LARGE;