Rename global table to digilines.

This also adds a backwards compat alias so other mods
shouldn't break.
This commit is contained in:
Diego Martínez
2017-03-01 00:57:58 -03:00
committed by Auke Kok
parent 54b1b3fe91
commit 6a2fa5a3e4
8 changed files with 63 additions and 59 deletions

View File

@ -2,7 +2,7 @@ local function sendMessage(pos, msg, channel)
if channel == nil then
channel = minetest.get_meta(pos):get_string("channel")
end
digiline:receptor_send(pos,digiline.rules.default,channel,msg)
digilines:receptor_send(pos,digilines.rules.default,channel,msg)
end
local function maybeString(stack)