1
0
зеркало из https://github.com/minetest-mods/technic.git synced 2025-12-22 23:16:01 +01:00
Этот коммит содержится в:
Thomas Rudin
2018-12-09 16:59:32 +01:00
родитель 6ef76aacfb 701240bc3a
Коммит b04c6a9576
2 изменённых файлов: 3 добавлений и 10 удалений

Просмотреть файл

@@ -116,7 +116,7 @@ local function quarry_run(pos, node)
if meta:get_int("enabled") and meta:get_int("HV_EU_input") >= quarry_demand and meta:get_int("purge_on") == 0 then
local pdir = minetest.facedir_to_dir(node.param2)
if pdir.y > 0 or pdir.y < 0 then
if pdir.y ~= 0 then
-- faces up or down, not valid, otherwise depth-check would run endless and hang up the server
return
end