Misc fixes

This commit is contained in:
hondacrx
2019-11-01 17:19:20 -04:00
parent e2f75b5f54
commit 9415511208
4 changed files with 10 additions and 12 deletions
-2
View File
@@ -1584,7 +1584,6 @@ namespace Game
return ae.Contains(event_id);
}
public List<ushort> GetActiveEventList() { return m_ActiveEvents; }
public GameEventData[] GetEventMap() { return mGameEvent; }
public bool IsActiveEvent(ushort event_id) { return m_ActiveEvents.Contains(event_id); }
@@ -1592,7 +1591,6 @@ namespace Game
void AddActiveEvent(ushort event_id) { m_ActiveEvents.Add(event_id); }
void RemoveActiveEvent(ushort event_id) { m_ActiveEvents.Remove(event_id); }
List<Tuple<uint, uint>>[] mGameEventCreatureQuests;
List<Tuple<uint, uint>>[] mGameEventGameObjectQuests;
Dictionary<uint, VendorItem>[] mGameEventVendors;