Core/Spells: enable and implement SMSG_MISSILE_CANCEL

Port From (https://github.com/TrinityCore/TrinityCore/commit/71db17220ae67dc6a354e88451ffc0700fe6c5f9)
This commit is contained in:
hondacrx
2020-08-22 12:58:19 -04:00
parent 9c4ce970b1
commit b3ebc2f8b5
4 changed files with 59 additions and 1 deletions
+3 -1
View File
@@ -60,7 +60,7 @@ namespace Framework.Dynamic
AddEvent(Event, CalculateTime(1), false);
}
}
public void KillAllEvents(bool force)
{
@@ -115,6 +115,8 @@ namespace Framework.Dynamic
return (m_time + t_offset);
}
public SortedMultiMap<ulong, BasicEvent> GetEvents() { return m_events; }
ulong m_time;
SortedMultiMap<ulong, BasicEvent> m_events = new SortedMultiMap<ulong, BasicEvent>();
}