*nill crash

master
AiTechEye 2018-10-29 14:25:19 +01:00 committed by GitHub
parent 5d843d1362
commit d1cbf58166
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -349,7 +349,7 @@ aliveai_nitroglycerine.spawn_dust=function(pos)
local n=minetest.registered_nodes[minetest.get_node(pos).name]
if not (n and n.walkable) or drop=="" or type(drop)~="string" then return end
local t=n.tiles
if not t[1] then return end
if not (t and t[1]) then return end
local tx={}
local tt={}
tt.t1=t[1]