Correct UseMeetingStoneAction to only apply on meeting stone portals

This commit is contained in:
mostlynick3 2025-03-28 16:01:09 +01:00 committed by GitHub
parent 8f92fbade3
commit 50200584d1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -48,8 +48,8 @@ bool UseMeetingStoneAction::Execute(Event event)
return false;
GameObjectTemplate const* goInfo = gameObject->GetGOInfo();
if (!goInfo || goInfo->type != GAMEOBJECT_TYPE_SUMMONING_RITUAL)
return false;
if (!goInfo || goInfo->entry != 179944)
return false;
return Teleport(master, bot);
}