From 3c8712d871fbd7f3bf936f4c3f9c8b7f5ec886fb Mon Sep 17 00:00:00 2001 From: Bond-009 Date: Fri, 25 Aug 2017 15:44:36 +0200 Subject: Gives all entities the default airlevel on creation (#3942) * Guardians don't take damage on land * Squids suffocate on land --- src/Entities/Entity.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/Entities') diff --git a/src/Entities/Entity.cpp b/src/Entities/Entity.cpp index 4f35315f7..347c0ec91 100644 --- a/src/Entities/Entity.cpp +++ b/src/Entities/Entity.cpp @@ -56,8 +56,8 @@ cEntity::cEntity(eEntityType a_EntityType, double a_X, double a_Y, double a_Z, d m_TicksSinceLastVoidDamage(0), m_IsSwimming(false), m_IsSubmerged(false), - m_AirLevel(0), - m_AirTickTimer(0), + m_AirLevel(MAX_AIR_LEVEL), + m_AirTickTimer(DROWNING_TICKS), m_TicksAlive(0), m_IsTicking(false), m_ParentChunk(nullptr), -- cgit v1.2.3