diff options
author | Mat <mail@mathias.is> | 2020-03-22 16:33:36 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-22 16:33:36 +0100 |
commit | c968f1f7da722eddb291c8ef474f1e0394621911 (patch) | |
tree | 74dbb39578e20e5b3ac9aa648bf093ab4ecf490d /src/Entities/Entity.cpp | |
parent | Fix invalid explosion damage (#4529) (diff) | |
download | cuberite-c968f1f7da722eddb291c8ef474f1e0394621911.tar cuberite-c968f1f7da722eddb291c8ef474f1e0394621911.tar.gz cuberite-c968f1f7da722eddb291c8ef474f1e0394621911.tar.bz2 cuberite-c968f1f7da722eddb291c8ef474f1e0394621911.tar.lz cuberite-c968f1f7da722eddb291c8ef474f1e0394621911.tar.xz cuberite-c968f1f7da722eddb291c8ef474f1e0394621911.tar.zst cuberite-c968f1f7da722eddb291c8ef474f1e0394621911.zip |
Diffstat (limited to '')
-rw-r--r-- | src/Entities/Entity.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Entities/Entity.cpp b/src/Entities/Entity.cpp index 99f8b56b8..90683271a 100644 --- a/src/Entities/Entity.cpp +++ b/src/Entities/Entity.cpp @@ -972,7 +972,7 @@ void cEntity::HandlePhysics(std::chrono::milliseconds a_Dt, cChunk & a_Chunk) } } } - else + else if (!(IsMinecart() || IsTNT())) { // Push out entity. BLOCKTYPE GotBlock; |