mirror of
https://github.com/BentoBoxWorld/BentoBox.git
synced 2025-03-11 14:20:55 +01:00
Updated readme
Removed unnecessary ; from RanksManager
This commit is contained in:
parent
5ac66edb6a
commit
effefae377
@ -1,8 +1,13 @@
|
||||
BSkyBlock
|
||||
==========
|
||||
[](https://travis-ci.org/tastybento/bskyblock)
|
||||
[
|
||||
[
|
||||
[
|
||||
[
|
||||
[
|
||||
|
||||
A Skyblock Bukkit plugin for Minecraft derived from the well-known ASkyBlock!
|
||||
A skyblock Bukkit plugin for Minecraft derived from the well-known ASkyBlock!
|
||||
This is a survival game where the player starts with an island in the sky.
|
||||
|
||||
BSkyBlock (Better SkyBlock) represents a turning point on ASkyBlock's history : Tastybento and Poslovitch thought and designed together this complete rewrite in order to provide a whole new way to play Skyblock.
|
||||
|
@ -119,7 +119,7 @@ public class RanksManager {
|
||||
return getRanks().values().stream().mapToInt(x -> {
|
||||
if (x > currentRank) {
|
||||
return x;
|
||||
};
|
||||
}
|
||||
return OWNER_RANK;
|
||||
}).min().orElse(currentRank);
|
||||
}
|
||||
@ -133,7 +133,7 @@ public class RanksManager {
|
||||
return getRanks().values().stream().mapToInt(x -> {
|
||||
if (x < currentRank) {
|
||||
return x;
|
||||
};
|
||||
}
|
||||
return BANNED_RANK;
|
||||
}).max().orElse(currentRank);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user