Fleshed out the quest actor and added a place to store the current active quest actors in the Player actor.

This commit is contained in:
Filip Maj
2016-03-21 11:42:27 -04:00
parent 3162bedb17
commit 49a13effca
2 changed files with 74 additions and 4 deletions

View File

@@ -118,6 +118,10 @@ namespace FFXIVClassic_Map_Server.Actors
private int lastPosition = 0;
private int lastStep = 0;
//Quest Actors (MUST MATCH playerWork.questScenario/questGuildleve)
public Quest[] questScenario = new Quest[16];
public Quest[] questGuildleve = new Quest[8];
public PlayerWork playerWork = new PlayerWork();
public ConnectedPlayer playerSession;