Minor fixes

* Fix auto openning channels with id 0 (guild chats)
* Minor fix in print
* Fix use of items behind creatures with classic control
* Fix teleports of 1sqm
This commit is contained in:
Eduardo Bart
2012-12-08 16:08:54 -02:00
parent 5de031fb8b
commit 7c48a98b67
6 changed files with 9 additions and 8 deletions

View File

@@ -3,7 +3,7 @@
function print(...)
local msg = ""
for i,v in ipairs({...}) do
msg = msg .. tostring(v) .. "\t"
msg = msg .. tostring(v) .. " "
end
g_logger.log(LogInfo, msg)
end