mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2024-11-22 21:26:46 +01:00
Fixed bug where players could remain in party chat after leaving or
being kicked from a party.
This commit is contained in:
parent
89d2f07c03
commit
5548e26dd9
@ -25,6 +25,7 @@ Version 1.4.06-dev
|
|||||||
= Fixed NPE when trying to tab-complete /mctop
|
= Fixed NPE when trying to tab-complete /mctop
|
||||||
= Fixed Fishing treasures always having the same enchants
|
= Fixed Fishing treasures always having the same enchants
|
||||||
= Fixed Smelting returning ink sacs instead of Lapis when double-dropping
|
= Fixed Smelting returning ink sacs instead of Lapis when double-dropping
|
||||||
|
= Fixed bug where players could remain in party chat after leaving or being kicked from a party.
|
||||||
! Changed Berserk to add items to inventory rather than denying pickup
|
! Changed Berserk to add items to inventory rather than denying pickup
|
||||||
! Changed Call of the Wild, newly summoned pet's will have a custom name. (added permission node to disable this)
|
! Changed Call of the Wild, newly summoned pet's will have a custom name. (added permission node to disable this)
|
||||||
! Changed Chimaera Wing's recipe result to use the ingredient Material
|
! Changed Chimaera Wing's recipe result to use the ingredient Material
|
||||||
|
@ -212,6 +212,7 @@ public final class PartyManager {
|
|||||||
|
|
||||||
if (mcMMOPlayer != null) {
|
if (mcMMOPlayer != null) {
|
||||||
mcMMOPlayer.removeParty();
|
mcMMOPlayer.removeParty();
|
||||||
|
mcMMOPlayer.setPartyChat(false);
|
||||||
mcMMOPlayer.setItemShareModifier(10);
|
mcMMOPlayer.setItemShareModifier(10);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -229,6 +230,7 @@ public final class PartyManager {
|
|||||||
|
|
||||||
if (mcMMOPlayer != null) {
|
if (mcMMOPlayer != null) {
|
||||||
mcMMOPlayer.removeParty();
|
mcMMOPlayer.removeParty();
|
||||||
|
mcMMOPlayer.setPartyChat(false);
|
||||||
mcMMOPlayer.setItemShareModifier(10);
|
mcMMOPlayer.setItemShareModifier(10);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user