summaryrefslogtreecommitdiffstats
path: root/Server/Plugins/NetworkTest/NetworkTest.lua
diff options
context:
space:
mode:
authorJulian Laubstein <julianlaubstein@yahoo.de>2016-01-02 00:47:42 +0100
committerJulian Laubstein <julianlaubstein@yahoo.de>2016-01-02 00:47:42 +0100
commit5c004e375a7c4fab9cbfeb36d63a788bbc883513 (patch)
treeabedc9b67734d9e37a36894b9331ae869d3adb61 /Server/Plugins/NetworkTest/NetworkTest.lua
parentMerge pull request #2838 from cuberite/clang-3.8-ignore-flag (diff)
parentUpdated plugins with the rename to Cuberite. (diff)
downloadcuberite-5c004e375a7c4fab9cbfeb36d63a788bbc883513.tar
cuberite-5c004e375a7c4fab9cbfeb36d63a788bbc883513.tar.gz
cuberite-5c004e375a7c4fab9cbfeb36d63a788bbc883513.tar.bz2
cuberite-5c004e375a7c4fab9cbfeb36d63a788bbc883513.tar.lz
cuberite-5c004e375a7c4fab9cbfeb36d63a788bbc883513.tar.xz
cuberite-5c004e375a7c4fab9cbfeb36d63a788bbc883513.tar.zst
cuberite-5c004e375a7c4fab9cbfeb36d63a788bbc883513.zip
Diffstat (limited to 'Server/Plugins/NetworkTest/NetworkTest.lua')
-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()