mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-08-11 11:59:27 +02:00
Refactored quest state system seems to work!
This commit is contained in:
parent
1523ae200b
commit
02cb0a3f43
14 changed files with 673 additions and 512 deletions
|
@ -20,6 +20,7 @@ along with Project Meteor Server. If not, see <https:www.gnu.org/licenses/>.
|
|||
*/
|
||||
|
||||
using Meteor.Common;
|
||||
using Meteor.Map.Actors.QuestNS;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.IO;
|
||||
|
@ -98,7 +99,7 @@ namespace Meteor.Map.Actors
|
|||
if (actorType.Equals("Command"))
|
||||
actor = new Command(id, actorName);
|
||||
else if (actorType.Equals("Quest"))
|
||||
actor = new Quest(id, actorName);
|
||||
actor = new Quest(id, actorName, output);
|
||||
//else if (actorType.Equals("Status"))
|
||||
//mStaticActors.Add(id, new Status(id, actorName));
|
||||
else if (actorType.Equals("Judge"))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue