Fixed implicit rounding warnings.
This commit is contained in:
parent
891c57bc02
commit
7549f468b3
@ -73,19 +73,22 @@ public:
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
double x = Callbacks.m_Pos.x;
|
auto x = Callbacks.m_Pos.x;
|
||||||
double y = Callbacks.m_Pos.y;
|
auto y = Callbacks.m_Pos.y;
|
||||||
double z = Callbacks.m_Pos.z;
|
auto z = Callbacks.m_Pos.z;
|
||||||
|
auto bx = FloorC(x);
|
||||||
|
auto by = FloorC(y);
|
||||||
|
auto bz = FloorC(z);
|
||||||
|
|
||||||
// Verify that block type for spawn point is water
|
// Verify that block type for spawn point is water
|
||||||
BLOCKTYPE SpawnBlock = a_World->GetBlock(x, y, z);
|
BLOCKTYPE SpawnBlock = a_World->GetBlock(bx, by, bz);
|
||||||
if (!IsBlockWater(SpawnBlock))
|
if (!IsBlockWater(SpawnBlock))
|
||||||
{
|
{
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Block above must be air to spawn a boat (prevents spawning a boat underwater)
|
// Block above must be air to spawn a boat (prevents spawning a boat underwater)
|
||||||
BLOCKTYPE BlockAbove = a_World->GetBlock(x, y + 1, z);
|
BLOCKTYPE BlockAbove = a_World->GetBlock(bx, by + 1, bz);
|
||||||
if (BlockAbove != E_BLOCK_AIR)
|
if (BlockAbove != E_BLOCK_AIR)
|
||||||
{
|
{
|
||||||
return false;
|
return false;
|
||||||
|
@ -1213,7 +1213,7 @@ bool cMonster::WouldBurnAt(Vector3d a_Location, cChunk & a_Chunk)
|
|||||||
GetWorld()->IsWeatherSunnyAt(POSX_TOINT, POSZ_TOINT) // Not raining
|
GetWorld()->IsWeatherSunnyAt(POSX_TOINT, POSZ_TOINT) // Not raining
|
||||||
)
|
)
|
||||||
{
|
{
|
||||||
int MobHeight = static_cast<int>(a_Location.y) + round(GetHeight()) - 1; // The height of the mob head
|
int MobHeight = FloorC(a_Location.y + GetHeight()) - 1; // The block Y coord of the mob's head
|
||||||
if (MobHeight >= cChunkDef::Height)
|
if (MobHeight >= cChunkDef::Height)
|
||||||
{
|
{
|
||||||
return true;
|
return true;
|
||||||
|
Loading…
Reference in New Issue
Block a user