Fix crash when trying to explode an unknown node

This commit is contained in:
Elias Fleckenstein 2021-04-22 13:19:26 +02:00
parent fe5f61c747
commit acbdc937b4
1 changed files with 1 additions and 1 deletions

View File

@ -212,7 +212,7 @@ local function trace_explode(pos, strength, raydirs, radius, info, puncher)
npos_x - emin_x + 1
local cid = data[idx]
local br = node_blastres[cid]
local br = node_blastres[cid] or INDESTRUCT_BLASTRES
if br < INDESTRUCT_BLASTRES and br > max_blast_resistance then
br = max_blast_resistance
end