diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/map/clif.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/map/clif.c b/src/map/clif.c index 19f10f828..35e8646fd 100644 --- a/src/map/clif.c +++ b/src/map/clif.c @@ -9716,8 +9716,8 @@ void clif_parse_UnequipItem(int fd,struct map_session_data *sd) return; } - if (sd->state.storage_flag) - ; //You can equip/unequip stuff while storage is open. + if (sd->state.storage_flag || sd->sc.opt1) + ; //You can equip/unequip stuff while storage is open/under status changes else if (pc_cant_act(sd)) return; |