Merge pull request 'Fix crash when blowing up an unknown node' (#38) from mcl_explosions into master

Reviewed-on: https://git.minetest.land/Mineclonia/Mineclonia/pulls/38
Reviewed-by: n_to <n_to@noreply.git.minetest.land>
Reviewed-by: erlehmann <nils+git.minetest.land@dieweltistgarnichtso.net>
master
erlehmann 2021-04-24 03:29:09 +00:00
commit d6463fe29a
1 changed files with 4 additions and 1 deletions

View File

@ -202,7 +202,10 @@ local function trace_explode(pos, strength, raydirs, radius, info, puncher)
npos_x - emin_x + 1
local cid = data[idx]
local br = node_blastres[cid]
-- Set blast resistance to 0 for unknown nodes
local br = node_blastres[cid] or 0
if br < INDESTRUCT_BLASTRES and br > max_blast_resistance then
br = max_blast_resistance
end