1
0
鏡像自 https://github.com/sys4-fr/server-nalc.git 已同步 2025-09-18 11:30:36 +02:00

check if fromnode is not nil before apply connected_chests fix

此提交包含在:
sys4-fr
2017-04-09 12:32:03 +02:00
父節點 1a7c63f6bd
當前提交 5c7d2ea9fa

查看文件

@@ -146,7 +146,7 @@ local function punch_filter(data, filtpos, filtnode, msg)
local fromnode = minetest.get_node(frompos)
-- Fix crash with connected_chests (sys4 fix for MFF)
if fromnode.name == "connected_chests:chest_right" then
if fromnode and fromnode.name == "connected_chests:chest_right" then
local v_mul = vector.multiply(dir, 2)
frompos = vector.subtract(filtpos, v_mul)
fromnode = minetest.get_node(frompos)