*added HandleGameObject function to instance, use this to simply open/close doors from scripts

--HG--
branch : trunk
This commit is contained in:
Rat
2009-04-04 18:07:05 +02:00
parent 1f9efc82ca
commit 3fd4f3d4b3
2 changed files with 17 additions and 0 deletions

View File

@@ -30,3 +30,13 @@ void InstanceData::SaveToDB()
CharacterDatabase.PExecute("UPDATE instance SET data = '%s' WHERE id = '%d'", data.c_str(), instance->GetInstanceId());
}
void InstanceData::HandleGameObject(uint64 GUID, bool open, GameObject *go)
{
if(!go)
go = instance->GetGameObjectInMap(GUID);
if(go)
go->SetGoState(open ? 0 : 1);
else
debug_log("SD2: InstanceData: HandleGameObject failed");
}