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/TNTEntity.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/TNTEntity.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Entities/TNTEntity.cpp b/src/Entities/TNTEntity.cpp index a86aa40e3..6ee56b92a 100644 --- a/src/Entities/TNTEntity.cpp +++ b/src/Entities/TNTEntity.cpp @@ -36,7 +36,7 @@ void cTNTEntity::Explode(void) m_FuseTicks = 0; Destroy(); FLOGD("BOOM at {0}", GetPosition()); - m_World->DoExplosionAt(4.0, GetPosX() + 0.49, GetPosY() + 0.49, GetPosZ() + 0.49, true, esPrimedTNT, this); + m_World->DoExplosionAt(4.0, GetPosX(), GetPosY(), GetPosZ(), true, esPrimedTNT, this); } |