Merge branch 'zesterer/better-block-format' into 'master'

Stopped all blocks being explodable

See merge request veloren/veloren!1402
This commit is contained in:
Joshua Barretto 2020-09-22 00:26:06 +00:00
commit 2f2e766ebb

View File

@ -187,7 +187,7 @@ impl Block {
// Explodable means that the terrain sprite will get removed anyway, so all is good for
// empty fluids.
// TODO: Handle the case of terrain sprites we don't want to have explode
_ => true,
_ => self.get_sprite().is_some(),
}
}