diff options
-rw-r--r-- | Changelog-Trunk.txt | 2 | ||||
-rw-r--r-- | src/map/status.c | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/Changelog-Trunk.txt b/Changelog-Trunk.txt index 1674699a2..fda98a3a3 100644 --- a/Changelog-Trunk.txt +++ b/Changelog-Trunk.txt @@ -1,5 +1,7 @@ Date Added +2011/11/16 + * Fixed natural expiration of GM mute printing the unmute message twice (since r12169). [Ai4rei] 2011/11/12 * Fixed npc class HIDDEN_WARP_NPC (139) being sent to the client, causing client crashes in poring war. It's a server-side "sprite" only. [Ai4rei] - Updated Aegis NPC ID constants from current npcidentity.lub (569~603). diff --git a/src/map/status.c b/src/map/status.c index 26c0c1b2f..4df2c80d6 100644 --- a/src/map/status.c +++ b/src/map/status.c @@ -6666,7 +6666,7 @@ int status_change_end_(struct block_list* bl, enum sc_type type, int tid, const case SC_NOCHAT: if (sd && sd->status.manner < 0 && tid != INVALID_TIMER) sd->status.manner = 0; - if (sd) + if (sd && tid == INVALID_TIMER) { clif_changestatus(&sd->bl,SP_MANNER,sd->status.manner); clif_updatestatus(sd,SP_MANNER); |