-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add explicit exception and documentation for when types are valid (#16)
References #15
- Loading branch information
Showing
4 changed files
with
28 additions
and
16 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
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,11 +1,10 @@ | ||
|
||
player-bar: | ||
type: SCOREBOARD | ||
style: ABSOLUTE | ||
type: SCOREBOARD # healthbar type (AKA location, can be SCOREBOARD or ACTION) | ||
style: ABSOLUTE # style of healthbar (ABSOLUTE, PERCENT, or BAR) | ||
|
||
mob-bar: | ||
type: NAME | ||
style: BAR | ||
length: 20 | ||
char: 0x25ae | ||
showMobNames: true | ||
type: NAME # healthbar type (AKA location, can be NAME or ACTION) | ||
style: BAR # style of healthbar (ABSOLUTE, PERCENT, or BAR) | ||
length: 20 # length of the bar (number of characters) | ||
char: 0x25ae # character to use for the bar | ||
showMobNames: true # if the mob's name should show alongside the healthbar (for NAME or ACTION type) |