forked from WiIIiam278/HuskSync
-
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.
Paper plugin support, save player itemsToKeep rather than drops if no…
…t empty (WiIIiam278#179) * Paper plugin support, save itemsToKeep if present, close WiIIiam278#172 * Fixup wrong packages, suppress a warning * Update docs, add settings for death saving, reorganise config slightly * Improve default server name lookup * docs: Add note on Unsupported Versions * docs: Minor Sync Modes tweaks
- Loading branch information
1 parent
6d9e68a
commit 7db3ed6
Showing
19 changed files
with
380 additions
and
55 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
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
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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
This plugin does not support the following software-Minecraft version combinations. The plugin will fail to load if you attempt to run it with these versions. Apologies for the inconvenience. | ||
|
||
## Incompatibility table | ||
| Minecraft Versions | Server Software | Notes | | ||
|--------------------|-------------------------------------------|----------------------------------------| | ||
| 1.19.4 | Only: `Purpur, Pufferfish`† | Older Paper builds also not supported. | | ||
| 1.19.3 | Only: `Paper, Purpur, Pufferfish`† | Upgrade to 1.19.4 or use Spigot | | ||
| below 1.16.5 | _All_ | Upgrade to 1.16.5 | | ||
|
||
†Further downstream forks of this server software are also affected. |
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 |
---|---|---|
@@ -0,0 +1,41 @@ | ||
dependencies { | ||
implementation project(':bukkit') | ||
compileOnly project(':common') | ||
|
||
compileOnly 'io.papermc.paper:paper-api:1.19.4-R0.1-SNAPSHOT' | ||
} | ||
|
||
shadowJar { | ||
dependencies { | ||
exclude(dependency('com.mojang:brigadier')) | ||
} | ||
|
||
relocate 'org.apache.commons.io', 'net.william278.husksync.libraries.commons.io' | ||
relocate 'org.apache.commons.text', 'net.william278.husksync.libraries.commons.text' | ||
relocate 'org.apache.commons.lang3', 'net.william278.husksync.libraries.commons.lang3' | ||
relocate 'com.google.gson', 'net.william278.husksync.libraries.gson' | ||
relocate 'org.json', 'net.william278.husksync.libraries.json' | ||
relocate 'com.fatboyindustrial', 'net.william278.husksync.libraries' | ||
relocate 'de.themoep', 'net.william278.husksync.libraries' | ||
relocate 'net.kyori', 'net.william278.husksync.libraries' | ||
relocate 'org.jetbrains', 'net.william278.husksync.libraries' | ||
relocate 'org.intellij', 'net.william278.husksync.libraries' | ||
relocate 'com.zaxxer', 'net.william278.husksync.libraries' | ||
relocate 'dev.dejvokep', 'net.william278.husksync.libraries' | ||
relocate 'net.william278.desertwell', 'net.william278.husksync.libraries.desertwell' | ||
relocate 'net.william278.paginedown', 'net.william278.husksync.libraries.paginedown' | ||
relocate 'net.william278.mapdataapi', 'net.william278.husksync.libraries.mapdataapi' | ||
relocate 'net.william278.andjam', 'net.william278.husksync.libraries.andjam' | ||
relocate 'net.querz', 'net.william278.husksync.libraries.nbtparser' | ||
relocate 'net.roxeez', 'net.william278.husksync.libraries' | ||
|
||
relocate 'me.lucko.commodore', 'net.william278.husksync.libraries.commodore' | ||
relocate 'net.byteflux.libby', 'net.william278.husksync.libraries.libby' | ||
relocate 'org.bstats', 'net.william278.husksync.libraries.bstats' | ||
relocate 'dev.triumphteam.gui', 'net.william278.husksync.libraries.triumphgui' | ||
relocate 'net.william278.mpdbconverter', 'net.william278.husksync.libraries.mpdbconverter' | ||
relocate 'net.william278.hslmigrator', 'net.william278.husksync.libraries.hslconverter' | ||
relocate 'net.william278.annotaml', 'net.william278.husksync.libraries.annotaml' | ||
relocate 'space.arim.morepaperlib', 'net.william278.husksync.libraries.paperlib' | ||
relocate 'de.tr7zw.changeme.nbtapi', 'net.william278.husksync.libraries.nbtapi' | ||
} |
Oops, something went wrong.