Fixed actors not being resent on login into already available session due to those actors being in the instance list but not the client. Added chocobo rental code.

This commit is contained in:
Filip Maj 2019-07-11 12:13:23 -04:00
parent d3027c3b26
commit 8687e43191
5 changed files with 117 additions and 22 deletions

View file

@ -124,7 +124,10 @@ namespace Meteor.Map
public Session AddSession(uint id)
{
if (mSessionList.ContainsKey(id))
{
mSessionList[id].ClearInstance();
return mSessionList[id];
}
Session session = new Session(id);
mSessionList.Add(id, session);