mirror of
https://github.com/BentoBoxWorld/BentoBox.git
synced 2024-11-24 11:45:31 +01:00
Revert "Removed unused World parameter in Island#showMembers()"
This reverts commit 4169ae9f16
.
This commit is contained in:
parent
b88e93a61c
commit
08be1e15d1
@ -613,7 +613,7 @@ public class Island implements DataObject {
|
||||
String total = plugin.getIWM().getResetLimit(world) < 0 ? "Unlimited" : String.valueOf(plugin.getIWM().getResetLimit(world));
|
||||
user.sendMessage("commands.admin.info.resets-left", "[number]", resets, "[total]", total);
|
||||
// Show team members
|
||||
showMembers(plugin, user);
|
||||
showMembers(plugin, user, world);
|
||||
}
|
||||
Vector location = center.toVector();
|
||||
user.sendMessage("commands.admin.info.island-location", "[xyz]", Util.xyz(location));
|
||||
@ -639,8 +639,9 @@ public class Island implements DataObject {
|
||||
* Shows the members of this island
|
||||
* @param plugin - plugin
|
||||
* @param user - user who is requesting
|
||||
* @param world - world to check
|
||||
*/
|
||||
public void showMembers(BentoBox plugin, User user) {
|
||||
public void showMembers(BentoBox plugin, User user, World world) {
|
||||
user.sendMessage("commands.admin.info.team-members-title");
|
||||
members.forEach((u, i) -> {
|
||||
if (owner.equals(u)) {
|
||||
|
Loading…
Reference in New Issue
Block a user