-
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.
update to latest fabric, add nearbypage as well
- Loading branch information
Showing
7 changed files
with
170 additions
and
125 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
227 changes: 121 additions & 106 deletions
227
plugin/src/main/java/com/insanj/pride/PrideCommandExecutor.java
Large diffs are not rendered by default.
Oops, something went wrong.
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,13 +1,48 @@ | ||
{ | ||
"schemaVersion": 1, | ||
"id": "pride", | ||
"version": "${version}", | ||
|
||
"name": "pride", | ||
"icon": "assets/pride/icon.png", | ||
"description": "keep track of your playmates in minecraft\nSettle your current area to Pride\n/settle <name>\ntrigger:\ndescription: Toggle trigger setting for an area\nusage: |\nToggle trigger setting for an area\n/trigger <name>\nabandon:\ndescription: Abandon a given area in Pride\nusage: |\nAbandon a given area in Pride\n/abandon <name>\nhere:\ndescription: Show every Pride area where you currently are\nusage: |\nShow every Pride area where you currently are\n/here <optional:username>\nfar:\ndescription: Calculate how far away you are from a Pride area\nusage: |\nCalculate how far away you are from a Pride area\n/far <name>\nareas:\ndescription: Show the names of all the Pride areas and how far away they are\nusage: |\nShow the names of all the Pride areas and how far away they are\n/areas\nbetween:\ndescription: Calculate the distance between two pride areas (> 256 for Nether Portals)\nusage: |\nCalculate the distance between two pride areas (> 256 for Nether Portals)\n/between <name_one>,<name_two>\ncompass:\ndescription: Point your compass towards an area. Will reset to original spawn if no argument is given\nusage: |\nPoint your compass towards an area. Will reset to original spawn if no argument is given\n/compass <area>\nnorth:\ndescription: Point your compass towards true north. Will reset if any argument is given\nusage: |\nPoint your compass towards true north. Will reset if any argument is given\n/north <reset>", | ||
"version": "${version}", | ||
"side": "server", | ||
"initializers": [ | ||
"com.insanj.pride.PrideMod" | ||
|
||
|
||
"authors": [ | ||
{ | ||
"name": "Julian (insanj) Weiss", | ||
"contact": { | ||
"email": "me@insanj.com", | ||
"homepage": "https://insanj.github.io/pride/", | ||
"issues": "https://github.com/insanj/pride/issues", | ||
"sources": "https://github.com/insanj/pride/" | ||
} | ||
} | ||
], | ||
"requires": { | ||
|
||
|
||
"license": "MIT", | ||
"contact": { | ||
"email": "me@insanj.com", | ||
"homepage": "https://insanj.github.io/pride/", | ||
"issues": "https://github.com/insanj/pride/issues", | ||
"sources": "https://github.com/insanj/pride/" | ||
}, | ||
|
||
"environment": "*", | ||
"entrypoints": { | ||
"main": [ | ||
"com.insanj.pride.PrideMod" | ||
] | ||
}, | ||
|
||
"requires" : { | ||
"fabricloader": ">=0.4.0", | ||
"fabric": "*" | ||
}, | ||
"depends": { | ||
"fabricloader": ">=0.4.0", | ||
"fabric": "*" | ||
} | ||
} | ||
|