mirror of
https://github.com/celisej567/mcpe.git
synced 2026-09-11 20:11:18 +03:00
* Hide the in-wall screen effect if fly hacks are on.
This commit is contained in:
@@ -316,7 +316,7 @@ void ItemInHandRenderer::renderScreenEffect(float f)
|
||||
renderFire(f);
|
||||
}
|
||||
|
||||
if (m_pMinecraft->m_pLocalPlayer->isInWall())
|
||||
if (m_pMinecraft->m_pLocalPlayer->isInWall() && !m_pMinecraft->m_options.m_bFlyCheat)
|
||||
{
|
||||
int fx = Mth::floor(m_pMinecraft->m_pLocalPlayer->m_pos.x);
|
||||
int fy = Mth::floor(m_pMinecraft->m_pLocalPlayer->m_pos.y);
|
||||
|
||||
Reference in New Issue
Block a user