Skip to content

Commit

Permalink
Tiny little mistake.
Browse files Browse the repository at this point in the history
  • Loading branch information
keelin committed Nov 14, 2013
1 parent d05d7fc commit 167db73
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ClientServices/UserInterface/Components/DebugConsole.cs
Original file line number Diff line number Diff line change
Expand Up @@ -214,11 +214,11 @@ private void ProcessCommand(string text)
}
else
{
var entMgr = IoCManager.Resolve<IEntityManager>();
var entMgr = IoCManager.Resolve<IEntityManagerContainer>();
if (entMgr != null)
{
int entUid = int.Parse(args[1]);
target = entMgr.GetEntity(entUid);
target = entMgr.EntityManager.GetEntity(entUid);
}
}

Expand Down

0 comments on commit 167db73

Please sign in to comment.