From ed71543dffd015ccbc926721294989c6317ae157 Mon Sep 17 00:00:00 2001 From: TurmoilToad Date: Tue, 9 Feb 2021 00:09:42 -0500 Subject: [PATCH] Add category tags to new client methods. (#1233) Add category tags to new client methods. --- zone/perl_client.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/zone/perl_client.cpp b/zone/perl_client.cpp index 197f4f262..04e93beae 100644 --- a/zone/perl_client.cpp +++ b/zone/perl_client.cpp @@ -221,7 +221,7 @@ XS(XS_Client_SetAnon); /* prototype to pass -Wmissing-prototypes */ XS(XS_Client_SetAnon) { dXSARGS; if (items != 2) - Perl_croak(aTHX_ "Usage: Client::SetAnon(THIS, uint8 anon_flag)"); + Perl_croak(aTHX_ "Usage: Client::SetAnon(THIS, uint8 anon_flag)"); // @categories Account and Character, Stats and Attributes { Client *THIS; uint8 anon_flag = (uint8) SvUV(ST(1)); @@ -235,7 +235,7 @@ XS(XS_Client_GetAFK); /* prototype to pass -Wmissing-prototypes */ XS(XS_Client_GetAFK) { dXSARGS; if (items != 1) - Perl_croak(aTHX_ "Usage: Client::GetAFK(THIS)"); + Perl_croak(aTHX_ "Usage: Client::GetAFK(THIS)"); // @categories Account and Character, Stats and Attributes { Client *THIS; uint8 RETVAL; @@ -252,7 +252,7 @@ XS(XS_Client_SetAFK); /* prototype to pass -Wmissing-prototypes */ XS(XS_Client_SetAFK) { dXSARGS; if (items != 2) - Perl_croak(aTHX_ "Usage: Client::SetAFK(THIS, uint8 afk_flag)"); + Perl_croak(aTHX_ "Usage: Client::SetAFK(THIS, uint8 afk_flag)"); // @categories Account and Character, Stats and Attributes { Client *THIS; uint8 afk_flag = (uint8) SvUV(ST(1));