mirror of
https://github.com/EQEmu/Server.git
synced 2026-06-11 03:31:08 +00:00
[Cleanup] Make use of AccountStatus constants wherever status is checked or used. (#1764)
* [Cleanup] Make use of AccountStatus constants wherever status is checked or used. - Cleanup all instances of SendEmoteMessage. - Cleanup all instances of SendEmoteMessageRaw. - Cleanup all instances of MessageStatus. - Convert Quest API method defaults to use constants. * Cleanup constant names.
This commit is contained in:
@@ -856,7 +856,12 @@ XS(XS_EntityList_MessageStatus) {
|
||||
uint32 type = (uint32) SvUV(ST(3));
|
||||
char *message = (char *) SvPV_nolen(ST(4));
|
||||
VALIDATE_THIS_IS_ENTITY;
|
||||
THIS->MessageStatus(to_guilddbid, to_minstatus, type, message);
|
||||
THIS->MessageStatus(
|
||||
to_guilddbid,
|
||||
to_minstatus,
|
||||
type,
|
||||
message
|
||||
);
|
||||
}
|
||||
XSRETURN_EMPTY;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user