This commit is contained in:
DangerousMilk 2025-10-17 20:13:23 +02:00
parent 5a987621a5
commit 2f7c013423
3 changed files with 0 additions and 5 deletions

View File

@ -30,7 +30,6 @@ public class EntityMeteor extends Entity {
this.ignoreFrustumCheck = true;
this.isImmuneToFire = true;
this.setSize(4F, 4F);
if(worldObj.isRemote) this.audioFly = MainRegistry.proxy.getLoopedSound("hbm:entity.meteoriteFallingLoop", 0, 0, 0, 1F, 100F, 0.9F + this.rand.nextFloat() * 0.2F, 0);
}

View File

@ -135,14 +135,11 @@ public class Meteorite {
switch(rand.nextInt(3)) {
case 0:
generateLarge(world, rand, x, y, z);
//world.createExplosion(null, x + 0.5, y + 0.5, z + 0.5, 5F, !safe);
break;
case 1:
//world.createExplosion(null, x + 0.5, y + 0.5, z + 0.5, 4F, !safe);
generateMedium(world, rand, x, y, z);
break;
case 2:
//world.createExplosion(null, x + 0.5, y + 0.5, z + 0.5, 2F, !safe);
generateSmall(world, rand, x, y, z);
break;
}

View File

@ -330,7 +330,6 @@
"entity.siegeDeath": {"category": "hostile", "sounds": ["entity/siegeDeath1", "entity/siegeDeath2", "entity/siegeDeath3"]},
"entity.meteoriteFallingLoop": {"category": "block", "sounds": [{"name": "entity/meteoriteFallingLoop", "stream": false}]},
"step.metal": {"category": "player", "sounds": [{"name": "footsteps/metal", "stream": false}]},
"step.iron_jump": {"category": "player", "sounds": [{"name": "footsteps/iron_jump", "stream": false}]},
"step.iron_land": {"category": "player", "sounds": [{"name": "footsteps/iron_land", "stream": false}]},