add libpng as dependency

* NOTE: you will need to download the new required libraries
This commit is contained in:
Eduardo Bart
2012-04-28 19:02:57 -03:00
parent 1c12bc3fb2
commit cc965bb77b
4 changed files with 18 additions and 1 deletions

View File

@@ -6,6 +6,10 @@ function print(...)
g_logger.log(LogInfo, msg)
end
function info(msg)
g_logger.log(LogInfo, msg)
end
function warning(msg)
g_logger.log(LogWarning, msg)
end

View File

@@ -101,7 +101,7 @@ local function onCreatureSpeak(name, level, speaktype, message, channelId, creat
Console.addText(message, speaktype, channel)
else
-- server sent a message on a channel that is not open
warning('message in channel id ', channelId, ' which is unknown, this is a server bug, relogin if you want to see messages in this channel')
warning('message in channel id ' .. channelId .. ' which is unknown, this is a server bug, relogin if you want to see messages in this channel')
end
end
end