DATABASE now also follows correctly the players.

This commit is contained in:
FlightControl
2016-05-27 13:21:39 +02:00
parent 645d074a7d
commit 7efbd60b9e
6 changed files with 157 additions and 212 deletions

View File

@@ -487,7 +487,10 @@ function BASE:E( Arguments )
end
local LineCurrent = DebugInfoCurrent.currentline
local LineFrom = DebugInfoFrom.currentline
local LineFrom = -1
if DebugInfoFrom then
LineFrom = DebugInfoFrom.currentline
end
env.info( string.format( "%6d(%6d)/%1s:%20s%05d.%s(%s)" , LineCurrent, LineFrom, "E", self.ClassName, self.ClassID, Function, routines.utils.oneLineSerialize( Arguments ) ) )
end