From c127297254e83aed7601e1eb0eaed683162fbb80 Mon Sep 17 00:00:00 2001 From: Niklp <89982526+Niklp09@users.noreply.github.com> Date: Mon, 14 Nov 2022 20:00:00 +0100 Subject: [PATCH] fix broken mesecons detection --- basis/command.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/basis/command.lua b/basis/command.lua index e070cd2..a7f15db 100644 --- a/basis/command.lua +++ b/basis/command.lua @@ -16,7 +16,7 @@ local S = function(pos) if pos then return minetest.pos_to_string(pos) end end --local P = minetest.string_to_pos --local M = minetest.get_meta -local has_mesecons = minetest.global_exists("mesecons_mvps") +local has_mesecons = minetest.global_exists("mesecon") local NodeInfoCache = {} local NumbersToBeRecycled = {}