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
+1 -1
View File
@@ -1459,7 +1459,7 @@ XS(XS_NPC_GetAvoidanceRating); /* prototype to pass -Wmissing-prototypes */
XS(XS_NPC_GetAvoidanceRating) { XS(XS_NPC_GetAvoidanceRating) {
dXSARGS; dXSARGS;
if (items != 1) 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; NPC *THIS;
int32 RETVAL; int32 RETVAL;