mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-05-20 08:26:59 -04:00
Refactored quest state system seems to work!
This commit is contained in:
@@ -6,7 +6,7 @@ using System.Threading.Tasks;
|
||||
|
||||
namespace Meteor.Map.DataObjects
|
||||
{
|
||||
class QuestData
|
||||
class QuestGameData
|
||||
{
|
||||
public uint Id { get; }
|
||||
public string ClassName { get; }
|
||||
@@ -15,7 +15,7 @@ namespace Meteor.Map.DataObjects
|
||||
public int MinLevel { get; }
|
||||
public int MinGCRank { get; }
|
||||
|
||||
public QuestData(uint id, string className, string name, uint prereq, int minLv, int minGcRank)
|
||||
public QuestGameData(uint id, string className, string name, uint prereq, int minLv, int minGcRank)
|
||||
{
|
||||
Id = id;
|
||||
ClassName = className;
|
@@ -25,8 +25,8 @@ using Meteor.Map.Actors;
|
||||
using Meteor.Map.packets.send.actor;
|
||||
using System.Collections.Generic;
|
||||
using Meteor.Map.actors.chara.npc;
|
||||
using static Meteor.Map.Actors.Quest;
|
||||
using static Meteor.Map.Actors.QuestState;
|
||||
using Meteor.Map.Actors.QuestNS;
|
||||
using static Meteor.Map.Actors.QuestNS.QuestState;
|
||||
|
||||
namespace Meteor.Map.DataObjects
|
||||
{
|
||||
|
Reference in New Issue
Block a user