Skip to content

Commit

Permalink
Follow up to 1f0ea81
Browse files Browse the repository at this point in the history
* Removed specific job restrictions from atcommand bodystyle.
  • Loading branch information
aleos89 committed Dec 30, 2017
1 parent 84085d7 commit 5602bb0
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions src/map/atcommand.cpp
Expand Up @@ -1767,13 +1767,7 @@ 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
|| (sd->class_&MAPID_THIRDMASK) == MAPID_MECHANIC || (sd->class_&MAPID_THIRDMASK) == MAPID_ROYAL_GUARD
|| (sd->class_&MAPID_THIRDMASK) == MAPID_ARCH_BISHOP || (sd->class_&MAPID_THIRDMASK) == MAPID_RANGER
|| (sd->class_&MAPID_THIRDMASK) == MAPID_WARLOCK || (sd->class_&MAPID_THIRDMASK) == MAPID_SHADOW_CHASER
|| (sd->class_&MAPID_THIRDMASK) == MAPID_MINSTRELWANDERER || (sd->class_&MAPID_THIRDMASK) == MAPID_SORCERER
|| (sd->class_&MAPID_THIRDMASK) == MAPID_SURA || (sd->class_&MAPID_THIRDMASK) == MAPID_RUNE_KNIGHT)) {
if (!(sd->class_&JOBL_THIRD)) {
clif_displaymessage(fd, msg_txt(sd,740)); // This job has no alternate body styles.
return -1;
}
Expand Down

0 comments on commit 5602bb0

Please sign in to comment.