From 0762ffa3dcd6591b51d22051b6fe36668ff37c0f Mon Sep 17 00:00:00 2001 From: Kinglykrab <89047260+Kinglykrab@users.noreply.github.com> Date: Fri, 1 Oct 2021 21:19:26 -0400 Subject: [PATCH] [Quest API] Typo in Perl $entity_lsit->IsMobSpawnedByNpcTypeID(). (#1576) This causes the wrong name to show up on Spire. --- zone/perl_entity.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zone/perl_entity.cpp b/zone/perl_entity.cpp index ec1e855cd..d45190d32 100644 --- a/zone/perl_entity.cpp +++ b/zone/perl_entity.cpp @@ -128,7 +128,7 @@ XS(XS_EntityList_IsMobSpawnedByNpcTypeID); /* prototype pass -Wmissing-prototype XS(XS_EntityList_IsMobSpawnedByNpcTypeID) { dXSARGS; if (items != 2) - Perl_croak(aTHX_ "Usage: EntityList::ValidMobByNpcTypeID(THIS, get_id)"); // @categories Script Utility + Perl_croak(aTHX_ "Usage: EntityList::IsMobSpawnedByNpcTypeID(THIS, get_id)"); // @categories Script Utility { EntityList *THIS; bool RETVAL;