* Remove some useless LogMsgs

This commit is contained in:
iProgramInCpp
2023-08-01 13:21:10 +03:00
parent 9eb809f1b5
commit d8cdbe4913
3 changed files with 1 additions and 6 deletions

View File

@@ -330,7 +330,6 @@ void Player::startCrafting(int x, int y, int z)
void Player::swing()
{
LogMsg("Swing!");
field_BA8 = -1;
field_BA4 = true;
}

View File

@@ -1274,10 +1274,6 @@ void Level::tickPendingTicks(bool b)
if (!b && t.m_delay > m_levelData.field_10)
break;
//int diff = m_levelData.field_10 - t.m_delay;
//if (diff != 0)
//LogMsg("Late tick at %d,%d,%d! (diff of %d ticks, tile: %d)", t.field_4, t.field_8, t.field_C, diff, t.field_10);
if (hasChunksAt(t.field_4 - 8, t.field_8 - 8, t.field_C - 8, t.field_4 + 8, t.field_8 + 8, t.field_C + 8))
{
TileID tile = getTile(t.field_4, t.field_8, t.field_C);

View File

@@ -1078,7 +1078,7 @@ void LevelRenderer::addParticle(const std::string& name, float x, float y, float
}
#ifndef ORIGINAL_CODE
LogMsg("Unknown particle type: %s", name.c_str());
//LogMsg("Unknown particle type: %s", name.c_str());
#endif
}