summaryrefslogtreecommitdiffstats
path: root/src/BlockEntities/MobSpawnerEntity.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/BlockEntities/MobSpawnerEntity.cpp')
-rw-r--r--src/BlockEntities/MobSpawnerEntity.cpp36
1 files changed, 18 insertions, 18 deletions
diff --git a/src/BlockEntities/MobSpawnerEntity.cpp b/src/BlockEntities/MobSpawnerEntity.cpp
index 85bdd7ecf..76b86f73a 100644
--- a/src/BlockEntities/MobSpawnerEntity.cpp
+++ b/src/BlockEntities/MobSpawnerEntity.cpp
@@ -151,36 +151,36 @@ void cMobSpawnerEntity::SpawnEntity(void)
break;
}
- int RelX = m_RelX + static_cast<int>((Random.RandReal<double>() - Random.RandReal<double>()) * 4.0);
- int RelY = m_Pos.y + Random.RandInt(-1, 1);
- int RelZ = m_RelZ + static_cast<int>((Random.RandReal<double>() - Random.RandReal<double>()) * 4.0);
-
- cChunk * Chunk = a_Chunk.GetRelNeighborChunkAdjustCoords(RelX, RelZ);
- if ((Chunk == nullptr) || !Chunk->IsValid())
+ Vector3i spawnRelPos(GetRelPos());
+ spawnRelPos += Vector3i(
+ static_cast<int>((Random.RandReal<double>() - Random.RandReal<double>()) * 4.0),
+ Random.RandInt(-1, 1),
+ static_cast<int>((Random.RandReal<double>() - Random.RandReal<double>()) * 4.0)
+ );
+
+ auto chunk = a_Chunk.GetRelNeighborChunkAdjustCoords(spawnRelPos);
+ if ((chunk == nullptr) || !chunk->IsValid())
{
continue;
}
- EMCSBiome Biome = Chunk->GetBiomeAt(RelX, RelZ);
+ EMCSBiome Biome = chunk->GetBiomeAt(spawnRelPos.x, spawnRelPos.z);
- if (cMobSpawner::CanSpawnHere(Chunk, RelX, RelY, RelZ, MobType, Biome))
+ if (cMobSpawner::CanSpawnHere(chunk, spawnRelPos, MobType, Biome))
{
- double PosX = Chunk->GetPosX() * cChunkDef::Width + RelX;
- double PosZ = Chunk->GetPosZ() * cChunkDef::Width + RelZ;
-
- auto Monster = cMonster::NewMonsterFromType(MobType);
- if (Monster == nullptr)
+ auto absPos = chunk->RelativeToAbsolute(spawnRelPos);
+ auto monster = cMonster::NewMonsterFromType(MobType);
+ if (monster == nullptr)
{
continue;
}
-
- Monster->SetPosition(PosX, RelY, PosZ);
- Monster->SetYaw(Random.RandReal(360.0f));
- if (Chunk->GetWorld()->SpawnMobFinalize(std::move(Monster)) != cEntity::INVALID_ID)
+ monster->SetPosition(absPos);
+ monster->SetYaw(Random.RandReal(360.0f));
+ if (chunk->GetWorld()->SpawnMobFinalize(std::move(monster)) != cEntity::INVALID_ID)
{
HaveSpawnedEntity = true;
m_World->BroadcastSoundParticleEffect(
EffectID::PARTICLE_MOBSPAWN,
- Vector3d(PosX, RelY, PosZ).Floor(),
+ absPos,
0
);
NearbyEntities++;