mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-16 01:01:30 +00:00
Add category tags to new client methods. (#1233)
Add category tags to new client methods.
This commit is contained in:
parent
0dcaea1e4e
commit
ed71543dff
@ -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));
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user