mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-08-24 10:00:55 +02:00
Ported over all the opening directors and improved the director code a bit more. Also implemented content instances for Grid/Uld.
This commit is contained in:
parent
24c46c0480
commit
69f7fb5e47
18 changed files with 205 additions and 94 deletions
|
@ -114,11 +114,11 @@ namespace FFXIVClassic_Map_Server.actors.area
|
|||
return mActorList[id];
|
||||
}
|
||||
|
||||
public PrivateAreaContent CreateContentArea(Player starterPlayer, string areaClassPath, string contentScript, string areaName, string directorName)
|
||||
public PrivateAreaContent CreateContentArea(Player starterPlayer, string areaClassPath, string contentScript, string areaName, string directorName, params object[] args)
|
||||
{
|
||||
lock (contentAreasLock)
|
||||
{
|
||||
Director director = CreateDirector(directorName);
|
||||
Director director = CreateDirector(directorName, true, args);
|
||||
|
||||
if (director == null)
|
||||
return null;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue