mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-07-27 12:56:07 +02:00
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:
parent
d3027c3b26
commit
8687e43191
5 changed files with 117 additions and 22 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue