diff options
Diffstat (limited to 'src/Entities/ProjectileEntity.cpp')
-rw-r--r-- | src/Entities/ProjectileEntity.cpp | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/Entities/ProjectileEntity.cpp b/src/Entities/ProjectileEntity.cpp index 0649e5b95..915475f2a 100644 --- a/src/Entities/ProjectileEntity.cpp +++ b/src/Entities/ProjectileEntity.cpp @@ -356,10 +356,7 @@ AString cProjectileEntity::GetMCAClassName(void) const case pkFirework: return "Firework"; case pkFishingFloat: return ""; // Unknown, perhaps MC doesn't save this? } - ASSERT(!"Unhandled projectile entity kind!"); - #ifndef __clang__ - return ""; - #endif + UNREACHABLE("Unsupported projectile kind"); } |