Fix Perl NPC GetAvoidanceRating() Perl Croak. (#1333)

This commit is contained in:
Alex 2021-04-27 17:46:59 -04:00 committed by GitHub
parent 6fb687871c
commit 1637ea95cb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1459,7 +1459,7 @@ XS(XS_NPC_GetAvoidanceRating); /* prototype to pass -Wmissing-prototypes */
XS(XS_NPC_GetAvoidanceRating) {
dXSARGS;
if (items != 1)
Perl_croak(aTHX_ "Usage: NPC::GetAvoidanceyRating(THIS)"); // @categories Stats and Attributes
Perl_croak(aTHX_ "Usage: NPC::GetAvoidanceRating(THIS)"); // @categories Stats and Attributes
{
NPC *THIS;
int32 RETVAL;