Skip to content

Commit

Permalink
meta cleanup (quotes/etc)
Browse files Browse the repository at this point in the history
  • Loading branch information
mcmonkey4eva committed Nov 29, 2019
1 parent 295c39f commit 1e62862
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 16 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,15 +39,15 @@ public class ScribeCommand extends AbstractCommand {
//
// @Usage
// Gives the book "Cosmos Book" to the player
// - scribe "Cosmos_Book" give
// - scribe Cosmos_Book give
//
// @Usage
// Drops the "Cosmos Book" at the players location
// - scribe "Cosmos_Book" drop <player.location>
// - scribe Cosmos_Book drop <player.location>
//
// @Usage
// Puts the "Cosmos Book" in the players hand
// - scribe "Cosmos_Book" equip
// - scribe Cosmos_Book equip
// -->

private enum BookAction {GIVE, DROP, EQUIP, NONE}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public class AnchorCommand extends AbstractCommand {
// Use to add and remove anchors to an NPC.
// - define location_name <context.message>
// - chat "I have saved this location as <[location_name]>.'
// - anchor add <npc.location> "id:<[location_name]>"
// - anchor add <npc.location> id:<[location_name]>
//
// @Usage
// Use to make an NPC walk to or walk near a saved anchor.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,12 +32,12 @@ public class AssignmentCommand extends AbstractCommand {
// <server.list_npcs_assigned[<assignment_script>]>
//
// @Usage
// Use to assign an npc with an assignment script named 'Bob the Builder'.
// - assignment set "script:Bob the Builder"
// Use to assign an npc with an assignment script named 'Bob_the_Builder'.
// - assignment set script:Bob_the_Builder
//
// @Usage
// Use to give an npc with the id of 3 an assignment.
// - assignment set "script:Bob the Builder" npc:n@3
// - assignment set script:Bob_the_Builder npc:n@3
//
// @Usage
// Use to remove an npc's assignment.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,15 +58,15 @@ public class AdvancementCommand extends AbstractCommand {
//
// @Usage
// Creates a new advancement that has a potato icon.
// - advancement "id:hello_world" "icon:baked_potato" "title:Hello World" "description:You said hello to the world."
// - advancement id:hello_world icon:baked_potato "title:Hello World" "description:You said hello to the world."
//
// @Usage
// Creates a new advancement with the parent "hello_world" and a CHALLENGE frame. Hidden until it is completed.
// - advancement "id:hello_universe" "parent:hello_world" "icon:ender_pearl" "title:Hello Universe" "description:You said hello to the UNIVERSE." "frame:challenge" "hidden:true" "x:1"
// - advancement id:hello_universe parent:hello_world icon:ender_pearl "title:Hello Universe" "description:You said hello to the UNIVERSE." frame:challenge hidden:true x:1
//
// @Usage
// Grants the "hello_world" advancement to the current player.
// - advancement "id:hello_world" "grant:<player>"
// - advancement id:hello_world grant:<player>
//
// -->

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,15 +66,15 @@ public class SidebarCommand extends AbstractCommand {
//
// @Usage
// Use to show all online players a sidebar.
// - sidebar set "title:Hello World!" "values:This is|My Message!|Wee!" "players:<server.list_online_players>"
// - sidebar set "title:Hello World!" "values:This is|My Message!|Wee!" players:<server.list_online_players>
//
// @Usage
// Use to show a few players their ping.
// - sidebar set "title:Info" "values:Ping<&co> <player.ping>" "players:p@steve|p@bob|p@joe" per_player
// - sidebar set title:Info "values:Ping<&co> <player.ping>" players:p@steve|p@bob|p@joe per_player
//
// @Usage
// Use to set a sidebar with the score values indicating information to the user.
// - sidebar set "scores:<server.list_online_players.size>|<server.max_players>" "values:Players online|Players allowed"
// - sidebar set scores:<server.list_online_players.size>|<server.max_players> "values:Players online|Players allowed"
//
// @Usage
// Use to change a specific line of a sidebar.
Expand All @@ -86,7 +86,7 @@ public class SidebarCommand extends AbstractCommand {
//
// @Usage
// Use to remove multiple lines from the sidebar.
// - sidebar remove "scores:2|4|6"
// - sidebar remove scores:2|4|6
//
// @Usage
// Use to stop showing the sidebar.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ public class ScoreboardCommand extends AbstractCommand {
//
// @Usage
// Make all the players on the world "survival" see each other's number of entity kills in the player list when pressing Tab
// - scoreboard add "viewers:<w@survival.players>" id:test obj:anything criteria:totalKillCount displayslot:player_list
// - scoreboard add viewers:<world[survival].players> id:test obj:anything criteria:totalKillCount displayslot:player_list
// -->

private enum Action {ADD, REMOVE}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public class DropCommand extends AbstractCommand {
//
// @Usage
// Use to drop some loot around the player.
// - drop gold_nugget <cuboid[cu@<player.location.add[-2,-2,-2]>|<player.location.add[2,2,2]>].spawnable_blocks.random>
// - drop gold_nugget <cuboid[<player.location.add[-2,-2,-2]>|<player.location.add[2,2,2]>].spawnable_blocks.random>
//
// @Usage
// Use to reward a player with 500 xp.
Expand Down

0 comments on commit 1e62862

Please sign in to comment.