Skip to content

Commit

Permalink
fix bug
Browse files Browse the repository at this point in the history
  • Loading branch information
ScutGame committed Sep 11, 2015
1 parent fb128b6 commit caef23c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Source/Middleware/GameServer/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@ class Program
{
static void Main(string[] args)
{
new ConsoleRuntimeHost().Start();
new ConsoleRuntimeHost().Start();
Console.WriteLine("exited.");
}
}
}
6 changes: 6 additions & 0 deletions Source/Middleware/GameServer/Script/Model/GuestUser.cs
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,12 @@ public override bool IsLock
{
get { return false; }
}

public override DateTime OnlineDate
{
get;
set;
}
}

}

0 comments on commit caef23c

Please sign in to comment.