Update GitHub URLs to new location (#3686)

This commit is contained in:
Mart 2023-06-23 18:34:11 -04:00 committed by GitHub
parent 7a59536450
commit feef08a256
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
16 changed files with 19 additions and 19 deletions

View File

@ -8,7 +8,7 @@ Before reporting a bug or issue, please make sure that the issue is actually bei
If you're unsure, feel free to ask using the above resources BEFORE making a report.
Bugs or issues should be reported using the [GitHub Issues tab](https://github.com/lucko/LuckPerms/issues).
Bugs or issues should be reported using the [GitHub Issues tab](https://github.com/LuckPerms/LuckPerms/issues).
### :pencil: Want to contribute code?
#### Pull Requests

View File

@ -29,7 +29,7 @@ LuckPerms uses Gradle to handle dependencies & building.
#### Compiling from source
```sh
git clone https://github.com/lucko/LuckPerms.git
git clone https://github.com/LuckPerms/LuckPerms.git
cd LuckPerms/
./gradlew build
```
@ -56,4 +56,4 @@ The project is split up into a few separate modules.
* **Bukkit, BungeeCord, Fabric, Forge, Nukkit, Sponge & Velocity** - Each use the common module to implement plugins on the respective server platforms.
## License
LuckPerms is licensed under the permissive MIT license. Please see [`LICENSE.txt`](https://github.com/lucko/LuckPerms/blob/master/LICENSE.txt) for more info.
LuckPerms is licensed under the permissive MIT license. Please see [`LICENSE.txt`](https://github.com/LuckPerms/LuckPerms/blob/master/LICENSE.txt) for more info.

View File

@ -217,7 +217,7 @@ public class LPBukkitPlugin extends AbstractLuckPermsPlugin {
* Vault in their onEnable without depending on us.
*
* Noteworthy discussion here:
* - https://github.com/lucko/LuckPerms/issues/1959
* - https://github.com/LuckPerms/LuckPerms/issues/1959
* - https://hub.spigotmc.org/jira/browse/SPIGOT-5546
* - https://github.com/PaperMC/Paper/pull/3509
*/

View File

@ -8,7 +8,7 @@
# | | #
# | WIKI: https://luckperms.net/wiki | #
# | DISCORD: https://discord.gg/luckperms | #
# | BUG REPORTS: https://github.com/lucko/LuckPerms/issues | #
# | BUG REPORTS: https://github.com/LuckPerms/LuckPerms/issues | #
# | | #
# | Each option in this file is documented and explained here: | #
# | ==> https://luckperms.net/wiki/Configuration | #

View File

@ -8,7 +8,7 @@
# | | #
# | WIKI: https://luckperms.net/wiki | #
# | DISCORD: https://discord.gg/luckperms | #
# | BUG REPORTS: https://github.com/lucko/LuckPerms/issues | #
# | BUG REPORTS: https://github.com/LuckPerms/LuckPerms/issues | #
# | | #
# | Each option in this file is documented and explained here: | #
# | ==> https://luckperms.net/wiki/Configuration | #

View File

@ -175,7 +175,7 @@ public abstract class AbstractLuckPermsPlugin implements LuckPermsPlugin {
this.fileWatcher = new FileWatcher(this, getBootstrap().getDataDirectory());
} catch (Throwable e) {
// catch throwable here, seems some JVMs throw UnsatisfiedLinkError when trying
// to create a watch service. see: https://github.com/lucko/LuckPerms/issues/2066
// to create a watch service. see: https://github.com/LuckPerms/LuckPerms/issues/2066
getLogger().warn("Error occurred whilst trying to create a file watcher:", e);
}
}

View File

@ -79,8 +79,8 @@ public final class UniqueIdType {
break;
case 2:
// if the uuid is version 2, assume it is an NPC
// see: https://github.com/lucko/LuckPerms/issues/1470
// and https://github.com/lucko/LuckPerms/issues/1470#issuecomment-475403162
// see: https://github.com/LuckPerms/LuckPerms/issues/1470
// and https://github.com/LuckPerms/LuckPerms/issues/1470#issuecomment-475403162
type = UniqueIdDetermineTypeEvent.TYPE_NPC;
break;
default:

View File

@ -17,8 +17,8 @@
"license": "MIT",
"contact": {
"homepage": "https://luckperms.net",
"source": "https://github.com/lucko/LuckPerms",
"issues": "https://github.com/lucko/LuckPerms/issues"
"source": "https://github.com/LuckPerms/LuckPerms",
"issues": "https://github.com/LuckPerms/LuckPerms/issues"
},
"environment": "server",
"entrypoints": {

View File

@ -8,7 +8,7 @@
# | | #
# | WIKI: https://luckperms.net/wiki | #
# | DISCORD: https://discord.gg/luckperms | #
# | BUG REPORTS: https://github.com/lucko/LuckPerms/issues | #
# | BUG REPORTS: https://github.com/LuckPerms/LuckPerms/issues | #
# | | #
# | Each option in this file is documented and explained here: | #
# | ==> https://luckperms.net/wiki/Configuration | #

View File

@ -8,7 +8,7 @@
# | | #
# | WIKI: https://luckperms.net/wiki | #
# | DISCORD: https://discord.gg/luckperms | #
# | BUG REPORTS: https://github.com/lucko/LuckPerms/issues | #
# | BUG REPORTS: https://github.com/LuckPerms/LuckPerms/issues | #
# | | #
# | Each option in this file is documented and explained here: | #
# | ==> https://luckperms.net/wiki/Configuration | #

View File

@ -82,7 +82,7 @@ public final class PermissibleInjector {
if (oldPermissible instanceof LuckPermsPermissible) {
// Nukkit seems to re-use player instances (or perhaps calls the login event twice?)
// so, just uninject here instead of throwing an exception like we do on Bukkit
// See: https://github.com/lucko/LuckPerms/issues/2791
// See: https://github.com/LuckPerms/LuckPerms/issues/2791
uninject(player, false);
}

View File

@ -193,7 +193,7 @@ public class NukkitConnectionListener extends AbstractConnectionListener impleme
public void onPlayerQuit(PlayerQuitEvent e) {
final Player player = e.getPlayer();
// https://github.com/lucko/LuckPerms/issues/2269
// https://github.com/LuckPerms/LuckPerms/issues/2269
if (player.getUniqueId() == null) {
return;
}

View File

@ -8,7 +8,7 @@
# | | #
# | WIKI: https://luckperms.net/wiki | #
# | DISCORD: https://discord.gg/luckperms | #
# | BUG REPORTS: https://github.com/lucko/LuckPerms/issues | #
# | BUG REPORTS: https://github.com/LuckPerms/LuckPerms/issues | #
# | | #
# | Each option in this file is documented and explained here: | #
# | ==> https://luckperms.net/wiki/Configuration | #

View File

@ -8,7 +8,7 @@
# | | #
# | WIKI: https://luckperms.net/wiki | #
# | DISCORD: https://discord.gg/luckperms | #
# | BUG REPORTS: https://github.com/lucko/LuckPerms/issues | #
# | BUG REPORTS: https://github.com/LuckPerms/LuckPerms/issues | #
# | | #
# | Each option in this file is documented and explained here: | #
# | ==> https://luckperms.net/wiki/Configuration | #

View File

@ -8,7 +8,7 @@
# | | #
# | WIKI: https://luckperms.net/wiki | #
# | DISCORD: https://discord.gg/luckperms | #
# | BUG REPORTS: https://github.com/lucko/LuckPerms/issues | #
# | BUG REPORTS: https://github.com/LuckPerms/LuckPerms/issues | #
# | | #
# | Each option in this file is documented and explained here: | #
# | ==> https://luckperms.net/wiki/Configuration | #

View File

@ -8,7 +8,7 @@
# | | #
# | WIKI: https://luckperms.net/wiki | #
# | DISCORD: https://discord.gg/luckperms | #
# | BUG REPORTS: https://github.com/lucko/LuckPerms/issues | #
# | BUG REPORTS: https://github.com/LuckPerms/LuckPerms/issues | #
# | | #
# | Each option in this file is documented and explained here: | #
# | ==> https://luckperms.net/wiki/Configuration | #