From 9d35da3411cdd1a40d95bf7c0faae9b18b36ebb6 Mon Sep 17 00:00:00 2001 From: Andrew Ward Date: Mon, 17 Dec 2012 17:43:56 +0000 Subject: [PATCH] Comments --- support.lua | 2 ++ 1 file changed, 2 insertions(+) diff --git a/support.lua b/support.lua index 4295744..e6ca811 100644 --- a/support.lua +++ b/support.lua @@ -11,8 +11,10 @@ print "Food [Support] - Initialising" function node_implement(modname,n_ext,n_int,resultfunc) if not minetest.get_modpath(modname) then + -- Mod is NOT installed resultfunc() else + -- Mod IS installed minetest.register_alias(n_int,n_ext) end end