mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2024-11-25 22:56:45 +01:00
Fixed bug with retrieving a player's party members
This commit is contained in:
parent
c4504de1da
commit
70e8e534fe
@ -14,6 +14,7 @@ Version 1.4.04-dev
|
|||||||
= Fixed bug where Mining wasn't awarding double drops
|
= Fixed bug where Mining wasn't awarding double drops
|
||||||
= Fixed bug where Shake wouldn't damage mobs whose max health was less than 4
|
= Fixed bug where Shake wouldn't damage mobs whose max health was less than 4
|
||||||
= Fixed bug where the API would fail if the name of a player's current party is requested when the player isn't in one (Thanks @dualspiral!)
|
= Fixed bug where the API would fail if the name of a player's current party is requested when the player isn't in one (Thanks @dualspiral!)
|
||||||
|
= Fixed bug with retrieving a player's party members
|
||||||
- Removed deprecated functions from API classes.
|
- Removed deprecated functions from API classes.
|
||||||
|
|
||||||
Version 1.4.03
|
Version 1.4.03
|
||||||
|
@ -131,7 +131,13 @@ public final class PartyManager {
|
|||||||
* @return all online players in this party
|
* @return all online players in this party
|
||||||
*/
|
*/
|
||||||
public static List<Player> getOnlineMembers(Player player) {
|
public static List<Player> getOnlineMembers(Player player) {
|
||||||
return getOnlineMembers(player.getName());
|
Party party = getPlayerParty(player.getName());
|
||||||
|
|
||||||
|
if (party == null) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
return getOnlineMembers(party.getName());
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
Reference in New Issue
Block a user