From 11699dff8773b07969d2e73debb13bcb2c28ad01 Mon Sep 17 00:00:00 2001 From: aleos89 Date: Thu, 25 Feb 2016 09:05:49 -0500 Subject: [PATCH] Updated Body Style command * Now allows for Royal Guard class. --- 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 c96e004f81..151991be75 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_MECHANIC) || (sd->class_&MAPID_THIRDMASK) == MAPID_ROYAL_GUARD) { clif_displaymessage(fd, msg_txt(sd,770)); // This job has no alternate body styles. return -1; }