Warden added

Warden added.

This is part of the current build errors fixes.

The application of this PR, results in zero build errors at this point
in time,
This commit is contained in:
Charles A Edwards 2016-02-07 15:04:10 +00:00 committed by Antz
parent 8ef55a922f
commit e097ab24c5
18 changed files with 3663 additions and 4 deletions

View file

@ -2464,12 +2464,17 @@ bool StartEvents_Event(Map* map, uint32 id, Object* source, Object* target, bool
}
// Wrappers
uint32 GetAreaTriggerScriptId(uint32 triggerId)
/*
* commented out as not appearing in the previous versions of the core
* delete this if it is found not to be needed (chucky)
*/
uint32 ScriptMgr::GetAreaTriggerScriptId(uint32 triggerId) const
{
return sScriptMgr.GetAreaTriggerScriptId(triggerId);
}
uint32 GetEventIdScriptId(uint32 eventId)
uint32 ScriptMgr::GetEventIdScriptId(uint32 eventId) const
{
return sScriptMgr.GetEventIdScriptId(eventId);
}