mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2024-11-22 13:16:45 +01:00
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!) Closes #843
This commit is contained in:
parent
ed09d1b390
commit
b2cdf21de5
@ -12,6 +12,7 @@ Version 1.4.04-dev
|
|||||||
= Fixed bug where Treefeller would try to cut too many leaves and reach the threshold when it shouldn't
|
= Fixed bug where Treefeller would try to cut too many leaves and reach the threshold when it shouldn't
|
||||||
= 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!)
|
||||||
|
|
||||||
Version 1.4.03
|
Version 1.4.03
|
||||||
+ Added option to advanced.yml to determine the # of enchant levels used when buffing Super Breaker & Giga Drill Breaker
|
+ Added option to advanced.yml to determine the # of enchant levels used when buffing Super Breaker & Giga Drill Breaker
|
||||||
|
@ -19,9 +19,13 @@ public final class PartyAPI {
|
|||||||
* This function is designed for API usage.
|
* This function is designed for API usage.
|
||||||
*
|
*
|
||||||
* @param player The player to check the party name of
|
* @param player The player to check the party name of
|
||||||
* @return the name of the player's party
|
* @return the name of the player's party, or null if not in a party
|
||||||
*/
|
*/
|
||||||
public static String getPartyName(Player player) {
|
public static String getPartyName(Player player) {
|
||||||
|
if (!inParty(player)) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
return UserManager.getPlayer(player).getParty().getName();
|
return UserManager.getPlayer(player).getParty().getName();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user