forked from bermudalocket/BlockStore
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Enforce minimum api-version and fix NPE in WorldEditHook.
- Loading branch information
Showing
3 changed files
with
64 additions
and
53 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,16 @@ | ||
main: net.sothatsit.blockstore.BlockStore | ||
author: sothatsit | ||
name: BlockStore | ||
version: ${project.version} | ||
soft-depend: [WorldEdit] | ||
commands: | ||
blockstore: | ||
description: 'BlockStore main command' | ||
permissions: | ||
blockstore.check: | ||
description: 'Check whether a block is placed' | ||
blockstore.info: | ||
description: 'Info on the loaded chunk stores' | ||
blockstore.reload: | ||
description: 'Reload the BlockStore config' | ||
main: net.sothatsit.blockstore.BlockStore | ||
author: sothatsit | ||
name: BlockStore | ||
version: ${project.version} | ||
soft-depend: [WorldEdit] | ||
api-version: 1.13 | ||
commands: | ||
blockstore: | ||
description: 'BlockStore main command' | ||
permissions: | ||
blockstore.check: | ||
description: 'Check whether a block is placed' | ||
blockstore.info: | ||
description: 'Info on the loaded chunk stores' | ||
blockstore.reload: | ||
description: 'Reload the BlockStore config' |