Fix typo where keyboards didn't save their channel

This commit is contained in:
rubenwardy 2015-10-04 14:31:53 +01:00
parent fd2eef1ef0
commit 531b7f223e

@ -44,7 +44,7 @@ minetest.register_node("digiboard:keyboard", {
local meta = minetest.get_meta(pos)
local channel = meta:get_string("channel")
if fields.channel then
meta:set_string("channel")
meta:set_string("channel", fields.channel)
meta:set_string("formspec", "field[text;Enter text;]")
elseif fields.text then
digiline:receptor_send(pos, digiline.rules.default, channel, fields.text)