mirror of
https://github.com/BentoBoxWorld/BentoBox.git
synced 2025-01-25 01:21:21 +01:00
Merge branch 'develop' into 1.20.5_compatibility
This commit is contained in:
commit
744665a16e
@ -112,9 +112,10 @@ repositories {
|
||||
}
|
||||
|
||||
dependencies {
|
||||
compileOnly 'world.bentobox:bentobox:PUT-VERSION-HERE'
|
||||
compileOnly 'world.bentobox:bentobox:PUT-VERSION-HERE-SNAPSHOT'
|
||||
}
|
||||
```
|
||||
**Note:** Due to a Gradle issue with versions for Maven, you need to use -SNAPSHOT at the end.
|
||||
|
||||
### History
|
||||
|
||||
|
@ -113,6 +113,10 @@ public class IslandInfo {
|
||||
if (island.getPurgeProtected()) {
|
||||
user.sendMessage("commands.admin.info.purge-protected");
|
||||
}
|
||||
// Show bundle info if available
|
||||
island.getMetaData("bundle").ifPresent(mdv -> {
|
||||
user.sendMessage("commands.admin.info.bundle", TextVariables.NAME, mdv.asString());
|
||||
});
|
||||
// Fire info event to allow other addons to add to info
|
||||
IslandEvent.builder().island(island).location(island.getCenter()).reason(IslandEvent.Reason.INFO)
|
||||
.involvedPlayer(user.getUniqueId()).addon(addon).admin(true).build();
|
||||
|
@ -230,6 +230,7 @@ commands:
|
||||
banned-players: 'Banned players:'
|
||||
banned-format: '&c [name]'
|
||||
unowned: '&c Unowned'
|
||||
bundle: '&a Blueprint Bundle used to create island: &b [name]'
|
||||
switch:
|
||||
description: switch on/off protection bypass
|
||||
op: '&c Ops can always bypass protection. Deop to use command.'
|
||||
|
Loading…
Reference in New Issue
Block a user