1
0

Added parentheses for clarity.

This commit is contained in:
Alexander Harkness 2014-10-01 21:37:20 +01:00
parent a765e43ee0
commit 7c731dbd8a

View File

@ -36,7 +36,7 @@ function OnServerPing(ClientHandle, ServerDescription, OnlinePlayers, MaxPlayers
-- Change favicon
if cFile:IsFile("my-favicon.png") then
local FaviconData = cFile:ReadWholeFile("my-favicon.png")
if FaviconData ~= "" and FaviconData ~= nil then
if (FaviconData ~= "") and (FaviconData ~= nil) then
Favicon = Base64Encode(FaviconData)
end
end