use the right variable to test on_receive_fields

This commit is contained in:
Tim 2015-02-05 08:22:53 +01:00
parent cb8ecbf8cf
commit f46de19ff0
1 changed files with 1 additions and 1 deletions

View File

@ -154,7 +154,7 @@ pipeworks.register_tube("pipeworks:teleport_tube", {
meta:set_string("infotext", "unconfigured Teleportation Tube")
end,
on_receive_fields = function(pos,formname,fields,sender)
if not new_channel then
if not fields.channel then
return -- ignore escaping or clientside manipulation of the form
end
local new_channel = tostring(fields.channel):trim()