oops small thing left out

This commit is contained in:
Ryan Ward 2018-06-15 13:56:00 -04:00
parent 3a7aea4131
commit c7734a2afa

View File

@ -24,6 +24,7 @@ function multi:newNode(name,settings)
print("Got data from the master or another node!") print("Got data from the master or another node!")
end) end)
node.server:broadcast("NODE_"..name) node.server:broadcast("NODE_"..name)
return node
end end
function multi:newMaster(name,settings) -- You will be able to have more than one master connecting to a node if that is what you want to do. I want you to be able to have the freedom to code any way that you want to code. function multi:newMaster(name,settings) -- You will be able to have more than one master connecting to a node if that is what you want to do. I want you to be able to have the freedom to code any way that you want to code.
local master = {} local master = {}
@ -34,6 +35,7 @@ function multi:newMaster(name,settings) -- You will be able to have more than on
client:send("Hello!") client:send("Hello!")
end) end)
net:newCastedClients("NODE_(.+)") -- Searches for nodes and connects to them, the master.clients table will contain them by name net:newCastedClients("NODE_(.+)") -- Searches for nodes and connects to them, the master.clients table will contain them by name
return master
end end
-- For the same reasons that the other integrations have this -- For the same reasons that the other integrations have this
multi.integration.nGLOBAL=nGLOBAL multi.integration.nGLOBAL=nGLOBAL