1
0
mirror of https://github.com/mcMMO-Dev/mcMMO.git synced 2025-07-04 22:54:44 +02:00

Fixed bug where players could remain in party chat after leaving or

being kicked from a party.
This commit is contained in:
GJ
2013-04-25 19:52:25 -04:00
parent 89d2f07c03
commit 5548e26dd9
2 changed files with 3 additions and 0 deletions
Changelog.txt
src/main/java/com/gmail/nossr50/party

@ -212,6 +212,7 @@ public final class PartyManager {
if (mcMMOPlayer != null) {
mcMMOPlayer.removeParty();
mcMMOPlayer.setPartyChat(false);
mcMMOPlayer.setItemShareModifier(10);
}
}
@ -229,6 +230,7 @@ public final class PartyManager {
if (mcMMOPlayer != null) {
mcMMOPlayer.removeParty();
mcMMOPlayer.setPartyChat(false);
mcMMOPlayer.setItemShareModifier(10);
}
}