Skip to content

Commit

Permalink
Follow up to d70b173
Browse files Browse the repository at this point in the history
* Add support Mechanic Outfit, thank you to Rytech for client support
  • Loading branch information
icxbb-xx committed Jan 20, 2016
1 parent b8a0517 commit 8413ae9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/map/atcommand.c
Original file line number Diff line number Diff line change
Expand Up @@ -1738,7 +1738,8 @@ ACMD_FUNC(bodystyle)
memset(atcmd_output, '\0', sizeof(atcmd_output));

// Limit body styles to certain jobs since not all of them are released yet.
if (!((sd->class_&MAPID_THIRDMASK) == MAPID_GUILLOTINE_CROSS || (sd->class_&MAPID_THIRDMASK) == MAPID_GENETIC)) {
if (!((sd->class_&MAPID_THIRDMASK) == MAPID_GUILLOTINE_CROSS || (sd->class_&MAPID_THIRDMASK) == MAPID_GENETIC
|| (sd->class_&MAPID_THIRDMASK) == MAPID_MECHANIC)) {
clif_displaymessage(fd, msg_txt(sd,770)); // This job has no alternate body styles.
return -1;
}
Expand Down

0 comments on commit 8413ae9

Please sign in to comment.