Skip to content

Commit

Permalink
fix(Core/InstanceScript): Fix new Remove function conversion miss (az…
Browse files Browse the repository at this point in the history
  • Loading branch information
kjack9 authored Nov 14, 2023
1 parent fb34176 commit 1227e69
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/server/game/Instances/InstanceScript.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ void InstanceScript::OnGameObjectCreate(GameObject* go)
void InstanceScript::OnGameObjectRemove(GameObject* go)
{
RemoveObject(go);
RemoveObject(go);
RemoveDoor(go);
}

ObjectGuid InstanceScript::GetObjectGuid(uint32 type) const
Expand Down

0 comments on commit 1227e69

Please sign in to comment.