-
-
Notifications
You must be signed in to change notification settings - Fork 45
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Re-add ability for town members to claim plots, fix placeholder issues (
#369) * Re-add plot claiming * Update getting started docs * Refactor Town object schema, add Options. * Fixup `#of` call in `LegacyMigrator` * Fixup questionable test data * Add unit test for updating schema, fix NPE updating options * Simplify schema update test * Bump `runServer` to target 1.20.2 * fixup unnecessary locale check * Bump runtime dependencies * sqlite: use `RETURNING`, fix driver API deprecation * sqlite: fix SQLException due to bad `executeUpdate` call * papi: Fix wrong claim type check, close #371 * locales: refactor `N/A` use, add `#getNotApplicable` * papi: fix level-up cost exception at max level, close #372 * bukkit: Make armor stand use require `CONTAINER_OPEN`, close #325 * bukkit: Make `Openable`s (doors, etc.) need `BLOCK_INTERACT`, close #363
- Loading branch information
1 parent
0b907e2
commit de49508
Showing
30 changed files
with
432 additions
and
175 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 |
---|---|---|
|
@@ -58,6 +58,7 @@ town { | |
farm; | ||
plot { | ||
members; | ||
claim; | ||
add { | ||
player brigadier:string single_word { | ||
manager; | ||
|
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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
{ | ||
"id": 1, | ||
"name": "Schema0", | ||
"greeting": "Test", | ||
"bio": "Test", | ||
"farewell": "Test", | ||
"members": {}, | ||
"rules": {}, | ||
"claims": 0, | ||
"level": 1, | ||
"money": 0.0, | ||
"bonuses": {}, | ||
"log": {}, | ||
"relations": {}, | ||
"metadata": {} | ||
} |
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
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
Oops, something went wrong.