summaryrefslogtreecommitdiffstats
path: root/Server/Plugins/NetworkTest
diff options
context:
space:
mode:
authorMattes D <github@xoft.cz>2016-01-01 21:05:09 +0100
committerMattes D <github@xoft.cz>2016-01-01 21:05:09 +0100
commit80e1eb37ddfcbd224fe1d3491201ba8db3e1114f (patch)
tree436ba0fe305343c808b7078b5106981be9b00802 /Server/Plugins/NetworkTest
parentMerge pull request #2838 from cuberite/clang-3.8-ignore-flag (diff)
downloadcuberite-80e1eb37ddfcbd224fe1d3491201ba8db3e1114f.tar
cuberite-80e1eb37ddfcbd224fe1d3491201ba8db3e1114f.tar.gz
cuberite-80e1eb37ddfcbd224fe1d3491201ba8db3e1114f.tar.bz2
cuberite-80e1eb37ddfcbd224fe1d3491201ba8db3e1114f.tar.lz
cuberite-80e1eb37ddfcbd224fe1d3491201ba8db3e1114f.tar.xz
cuberite-80e1eb37ddfcbd224fe1d3491201ba8db3e1114f.tar.zst
cuberite-80e1eb37ddfcbd224fe1d3491201ba8db3e1114f.zip
Diffstat (limited to 'Server/Plugins/NetworkTest')
-rw-r--r--Server/Plugins/NetworkTest/NetworkTest.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/Server/Plugins/NetworkTest/NetworkTest.lua b/Server/Plugins/NetworkTest/NetworkTest.lua
index d6849ead6..1bb35d0c6 100644
--- a/Server/Plugins/NetworkTest/NetworkTest.lua
+++ b/Server/Plugins/NetworkTest/NetworkTest.lua
@@ -107,7 +107,7 @@ local g_Services =
-- Send a welcome message to newly accepted connections:
OnAccepted = function (a_Link)
- a_Link:Send("Hello, " .. a_Link:GetRemoteIP() .. ", welcome to the echo server @ MCServer-Lua\r\n")
+ a_Link:Send("Hello, " .. a_Link:GetRemoteIP() .. ", welcome to the echo server @ Cuberite-Lua\r\n")
end, -- OnAccepted()
-- There was an error listening on the port:
@@ -140,7 +140,7 @@ local g_Services =
-- Send a welcome message and the fortune to newly accepted connections:
OnAccepted = function (a_Link)
- a_Link:Send("Hello, " .. a_Link:GetRemoteIP() .. ", welcome to the fortune server @ MCServer-Lua\r\n\r\nYour fortune:\r\n")
+ a_Link:Send("Hello, " .. a_Link:GetRemoteIP() .. ", welcome to the fortune server @ Cuberite-Lua\r\n\r\nYour fortune:\r\n")
a_Link:Send(g_Fortunes[math.random(#g_Fortunes)] .. "\r\n")
end, -- OnAccepted()