diff options
Diffstat (limited to 'src/map')
-rw-r--r-- | src/map/pc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/pc.c b/src/map/pc.c index 63d62467c..ae746dab4 100644 --- a/src/map/pc.c +++ b/src/map/pc.c @@ -5190,7 +5190,7 @@ static int pc_useitem(struct map_session_data *sd, int n) // Store information for later use before it is lost (via pc->delitem) [Paradox924X] nameid = sd->inventory_data[n]->nameid; - if (nameid == ITEMID_MEGAPHONE && (sd->state.workinprogress & 2) != 0) { + if (nameid == ITEMID_MEGAPHONE && ((sd->state.workinprogress & 2) != 0 || sd->state.using_megaphone != 0)) { #if PACKETVER >= 20110308 clif->msgtable(sd, MSG_BUSY); #else |