[Bug Fix] Fix Perl Croak for GetEnt() (#1898)

This commit is contained in:
Kinglykrab
2021-12-22 15:27:25 -05:00
committed by GitHub
parent f26d56d6d5
commit 724d47432b
+1 -1
View File
@@ -34,7 +34,7 @@ XS(XS_HateEntry_GetEnt); /* prototype to pass -Wmissing-prototypes */
XS(XS_HateEntry_GetEnt) {
dXSARGS;
if (items != 1)
Perl_croak(aTHX_ "Usage: HateEntry::GetData(THIS)"); // @categories Script Utility, Hate and Aggro
Perl_croak(aTHX_ "Usage: HateEntry::GetEnt(THIS)"); // @categories Script Utility, Hate and Aggro
{
struct_HateList *THIS;
Mob *RETVAL;