diff options
Diffstat (limited to 'src/map/status.c')
-rw-r--r-- | src/map/status.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/map/status.c b/src/map/status.c index b113cfa21..048fbe19e 100644 --- a/src/map/status.c +++ b/src/map/status.c @@ -4151,8 +4151,11 @@ int status_change_start(struct block_list *bl,int type,int rate,int val1,int val break;
case SC_NOCHAT: //チャット禁止?態
{
- if(!battle_config.muting_players)
+ if(!battle_config.muting_players) {
+ sd->status.manner = 0; //Zido
+ status_change_end(&sd->bl,SC_NOCHAT,-1); //Zido
return 0;
+ }
if (!(flag&4))
tick = 60000;
|