From 6244f5b65eb4fa94b55ad33078880f7577a85238 Mon Sep 17 00:00:00 2001 From: Tux Date: Sun, 21 Jun 2015 22:44:14 -0400 Subject: [PATCH] Clarify that Redis does allow tables to be sent back, but not associative ones. --- src/main/resources/lua/server_to_players.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/resources/lua/server_to_players.lua b/src/main/resources/lua/server_to_players.lua index 3f71791..a4ab73d 100644 --- a/src/main/resources/lua/server_to_players.lua +++ b/src/main/resources/lua/server_to_players.lua @@ -19,5 +19,5 @@ for _, proxy in ipairs(ARGV) do end end --- Redis can't map a Lua table back, so we have to send it as JSON. +-- Redis can't map Lua associative tables back, so we have to send it as JSON. return cjson.encode(serverToData) \ No newline at end of file