mirror of
https://github.com/lucko/LuckPerms.git
synced 2025-08-18 20:31:16 +02:00
Update GitHub URLs to new location (#3686)
This commit is contained in:
@@ -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.
|
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?
|
### :pencil: Want to contribute code?
|
||||||
#### Pull Requests
|
#### Pull Requests
|
||||||
|
@@ -29,7 +29,7 @@ LuckPerms uses Gradle to handle dependencies & building.
|
|||||||
|
|
||||||
#### Compiling from source
|
#### Compiling from source
|
||||||
```sh
|
```sh
|
||||||
git clone https://github.com/lucko/LuckPerms.git
|
git clone https://github.com/LuckPerms/LuckPerms.git
|
||||||
cd LuckPerms/
|
cd LuckPerms/
|
||||||
./gradlew build
|
./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.
|
* **Bukkit, BungeeCord, Fabric, Forge, Nukkit, Sponge & Velocity** - Each use the common module to implement plugins on the respective server platforms.
|
||||||
|
|
||||||
## License
|
## 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.
|
||||||
|
@@ -217,7 +217,7 @@ public class LPBukkitPlugin extends AbstractLuckPermsPlugin {
|
|||||||
* Vault in their onEnable without depending on us.
|
* Vault in their onEnable without depending on us.
|
||||||
*
|
*
|
||||||
* Noteworthy discussion here:
|
* 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://hub.spigotmc.org/jira/browse/SPIGOT-5546
|
||||||
* - https://github.com/PaperMC/Paper/pull/3509
|
* - https://github.com/PaperMC/Paper/pull/3509
|
||||||
*/
|
*/
|
||||||
|
@@ -8,7 +8,7 @@
|
|||||||
# | | #
|
# | | #
|
||||||
# | WIKI: https://luckperms.net/wiki | #
|
# | WIKI: https://luckperms.net/wiki | #
|
||||||
# | DISCORD: https://discord.gg/luckperms | #
|
# | 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: | #
|
# | Each option in this file is documented and explained here: | #
|
||||||
# | ==> https://luckperms.net/wiki/Configuration | #
|
# | ==> https://luckperms.net/wiki/Configuration | #
|
||||||
|
@@ -8,7 +8,7 @@
|
|||||||
# | | #
|
# | | #
|
||||||
# | WIKI: https://luckperms.net/wiki | #
|
# | WIKI: https://luckperms.net/wiki | #
|
||||||
# | DISCORD: https://discord.gg/luckperms | #
|
# | 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: | #
|
# | Each option in this file is documented and explained here: | #
|
||||||
# | ==> https://luckperms.net/wiki/Configuration | #
|
# | ==> https://luckperms.net/wiki/Configuration | #
|
||||||
|
@@ -175,7 +175,7 @@ public abstract class AbstractLuckPermsPlugin implements LuckPermsPlugin {
|
|||||||
this.fileWatcher = new FileWatcher(this, getBootstrap().getDataDirectory());
|
this.fileWatcher = new FileWatcher(this, getBootstrap().getDataDirectory());
|
||||||
} catch (Throwable e) {
|
} catch (Throwable e) {
|
||||||
// catch throwable here, seems some JVMs throw UnsatisfiedLinkError when trying
|
// 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);
|
getLogger().warn("Error occurred whilst trying to create a file watcher:", e);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -79,8 +79,8 @@ public final class UniqueIdType {
|
|||||||
break;
|
break;
|
||||||
case 2:
|
case 2:
|
||||||
// if the uuid is version 2, assume it is an NPC
|
// if the uuid is version 2, assume it is an NPC
|
||||||
// see: https://github.com/lucko/LuckPerms/issues/1470
|
// see: https://github.com/LuckPerms/LuckPerms/issues/1470
|
||||||
// and https://github.com/lucko/LuckPerms/issues/1470#issuecomment-475403162
|
// and https://github.com/LuckPerms/LuckPerms/issues/1470#issuecomment-475403162
|
||||||
type = UniqueIdDetermineTypeEvent.TYPE_NPC;
|
type = UniqueIdDetermineTypeEvent.TYPE_NPC;
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
|
@@ -17,8 +17,8 @@
|
|||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"contact": {
|
"contact": {
|
||||||
"homepage": "https://luckperms.net",
|
"homepage": "https://luckperms.net",
|
||||||
"source": "https://github.com/lucko/LuckPerms",
|
"source": "https://github.com/LuckPerms/LuckPerms",
|
||||||
"issues": "https://github.com/lucko/LuckPerms/issues"
|
"issues": "https://github.com/LuckPerms/LuckPerms/issues"
|
||||||
},
|
},
|
||||||
"environment": "server",
|
"environment": "server",
|
||||||
"entrypoints": {
|
"entrypoints": {
|
||||||
|
@@ -8,7 +8,7 @@
|
|||||||
# | | #
|
# | | #
|
||||||
# | WIKI: https://luckperms.net/wiki | #
|
# | WIKI: https://luckperms.net/wiki | #
|
||||||
# | DISCORD: https://discord.gg/luckperms | #
|
# | 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: | #
|
# | Each option in this file is documented and explained here: | #
|
||||||
# | ==> https://luckperms.net/wiki/Configuration | #
|
# | ==> https://luckperms.net/wiki/Configuration | #
|
||||||
|
@@ -8,7 +8,7 @@
|
|||||||
# | | #
|
# | | #
|
||||||
# | WIKI: https://luckperms.net/wiki | #
|
# | WIKI: https://luckperms.net/wiki | #
|
||||||
# | DISCORD: https://discord.gg/luckperms | #
|
# | 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: | #
|
# | Each option in this file is documented and explained here: | #
|
||||||
# | ==> https://luckperms.net/wiki/Configuration | #
|
# | ==> https://luckperms.net/wiki/Configuration | #
|
||||||
|
@@ -82,7 +82,7 @@ public final class PermissibleInjector {
|
|||||||
if (oldPermissible instanceof LuckPermsPermissible) {
|
if (oldPermissible instanceof LuckPermsPermissible) {
|
||||||
// Nukkit seems to re-use player instances (or perhaps calls the login event twice?)
|
// 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
|
// 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);
|
uninject(player, false);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -193,7 +193,7 @@ public class NukkitConnectionListener extends AbstractConnectionListener impleme
|
|||||||
public void onPlayerQuit(PlayerQuitEvent e) {
|
public void onPlayerQuit(PlayerQuitEvent e) {
|
||||||
final Player player = e.getPlayer();
|
final Player player = e.getPlayer();
|
||||||
|
|
||||||
// https://github.com/lucko/LuckPerms/issues/2269
|
// https://github.com/LuckPerms/LuckPerms/issues/2269
|
||||||
if (player.getUniqueId() == null) {
|
if (player.getUniqueId() == null) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
@@ -8,7 +8,7 @@
|
|||||||
# | | #
|
# | | #
|
||||||
# | WIKI: https://luckperms.net/wiki | #
|
# | WIKI: https://luckperms.net/wiki | #
|
||||||
# | DISCORD: https://discord.gg/luckperms | #
|
# | 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: | #
|
# | Each option in this file is documented and explained here: | #
|
||||||
# | ==> https://luckperms.net/wiki/Configuration | #
|
# | ==> https://luckperms.net/wiki/Configuration | #
|
||||||
|
@@ -8,7 +8,7 @@
|
|||||||
# | | #
|
# | | #
|
||||||
# | WIKI: https://luckperms.net/wiki | #
|
# | WIKI: https://luckperms.net/wiki | #
|
||||||
# | DISCORD: https://discord.gg/luckperms | #
|
# | 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: | #
|
# | Each option in this file is documented and explained here: | #
|
||||||
# | ==> https://luckperms.net/wiki/Configuration | #
|
# | ==> https://luckperms.net/wiki/Configuration | #
|
||||||
|
@@ -8,7 +8,7 @@
|
|||||||
# | | #
|
# | | #
|
||||||
# | WIKI: https://luckperms.net/wiki | #
|
# | WIKI: https://luckperms.net/wiki | #
|
||||||
# | DISCORD: https://discord.gg/luckperms | #
|
# | 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: | #
|
# | Each option in this file is documented and explained here: | #
|
||||||
# | ==> https://luckperms.net/wiki/Configuration | #
|
# | ==> https://luckperms.net/wiki/Configuration | #
|
||||||
|
@@ -8,7 +8,7 @@
|
|||||||
# | | #
|
# | | #
|
||||||
# | WIKI: https://luckperms.net/wiki | #
|
# | WIKI: https://luckperms.net/wiki | #
|
||||||
# | DISCORD: https://discord.gg/luckperms | #
|
# | 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: | #
|
# | Each option in this file is documented and explained here: | #
|
||||||
# | ==> https://luckperms.net/wiki/Configuration | #
|
# | ==> https://luckperms.net/wiki/Configuration | #
|
||||||
|
Reference in New Issue
Block a user