* Fixed natural expiration of GM mute printing the unmute message twice (since r12169).

git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@14994 54d463be-8e91-2dee-dedb-b68131a5f0ec
This commit is contained in:
ai4rei 2011-11-16 16:39:51 +00:00
parent f204e8aa09
commit d9c8d6b25a
2 changed files with 3 additions and 1 deletions

View File

@ -1,5 +1,7 @@
Date Added Date Added
2011/11/16
* Fixed natural expiration of GM mute printing the unmute message twice (since r12169). [Ai4rei]
2011/11/12 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] * 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). - Updated Aegis NPC ID constants from current npcidentity.lub (569~603).

View File

@ -6666,7 +6666,7 @@ int status_change_end_(struct block_list* bl, enum sc_type type, int tid, const
case SC_NOCHAT: case SC_NOCHAT:
if (sd && sd->status.manner < 0 && tid != INVALID_TIMER) if (sd && sd->status.manner < 0 && tid != INVALID_TIMER)
sd->status.manner = 0; sd->status.manner = 0;
if (sd) if (sd && tid == INVALID_TIMER)
{ {
clif_changestatus(&sd->bl,SP_MANNER,sd->status.manner); clif_changestatus(&sd->bl,SP_MANNER,sd->status.manner);
clif_updatestatus(sd,SP_MANNER); clif_updatestatus(sd,SP_MANNER);