From 101b07130cf32b47b8e9ccf289ef2d07c88640b2 Mon Sep 17 00:00:00 2001 From: aleos89 Date: Thu, 3 Mar 2016 13:20:30 -0500 Subject: [PATCH] Corrected a typo in Body Style command (fixes #999) * Adjusted parenthesis. --- src/map/atcommand.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/map/atcommand.c b/src/map/atcommand.c index 151991be75..dddcdf7134 100644 --- a/src/map/atcommand.c +++ b/src/map/atcommand.c @@ -1739,7 +1739,7 @@ ACMD_FUNC(bodystyle) // 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_MECHANIC || (sd->class_&MAPID_THIRDMASK) == MAPID_ROYAL_GUARD)) { clif_displaymessage(fd, msg_txt(sd,770)); // This job has no alternate body styles. return -1; }