-
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #26 from GeyserMC/rewrite
Rewrite: Let's make this a plugin
- Loading branch information
Showing
50 changed files
with
1,335 additions
and
1,926 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 was deleted.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# GlobalLinkServer Plugin | ||
|
||
> [!IMPORTANT] | ||
> This repo contains the code for the Geyser Global Linking Server plugin. | ||
> If you want to just link your account, join link.geysermc.org on Minecraft Java or Bedrock. | ||
> For more information visit https://link.geysermc.org/ | ||
### `server.properties` | ||
```properties | ||
allow-nether=false | ||
generate-structures=false | ||
generator-settings={"biome"\:"minecraft\:the_void","layers"\:[{"block"\:"minecraft\:air","height"\:1}]} | ||
level-type=minecraft\:flat | ||
spawn-protection=200 | ||
``` | ||
|
||
### `spigot.yml` | ||
```yaml | ||
commands: | ||
send-namespaced: false | ||
``` | ||
### `bukkit.yml` | ||
```yaml | ||
settings: | ||
allow-end: false | ||
``` | ||
|
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 +1 @@ | ||
version=1.0-SNAPSHOT | ||
version=2.0-SNAPSHOT |
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,33 +1,30 @@ | ||
[versions] | ||
gson = "2.10.1" | ||
protocol = "3.0.0.Beta5-20241022.154658-14" | ||
netty = "4.1.110.Final" | ||
fastutil = "8.5.2" | ||
mcprotocollib = "86903ec" # Revert from jitpack after release | ||
adventure-text = "4.15.0-20231207.074016-23" # Match version to MCPL | ||
floodgate = "2.2.3-SNAPSHOT" | ||
mariadb-client = "2.7.3" | ||
fastutil = "8.5.2" | ||
checker-qual = "3.21.1" | ||
|
||
indra = "3.1.2" | ||
paperweight = "2.0.0-beta.12" | ||
runpaper = "2.3.1" | ||
|
||
[libraries] | ||
gson = { module = "com.google.code.gson:gson", version.ref = "gson" } | ||
protocol-codec = { module = "org.cloudburstmc.protocol:bedrock-codec", version.ref = "protocol" } | ||
protocol-connection = { module = "org.cloudburstmc.protocol:bedrock-connection", version.ref = "protocol" } | ||
protocol-common = { module = "org.cloudburstmc.protocol:common", version.ref = "protocol" } | ||
|
||
netty-handler = { group = "io.netty", name = "netty-handler", version.ref = "netty" } | ||
|
||
fastutil-common = { module = "com.nukkitx.fastutil:fastutil-common", version.ref = "fastutil" } | ||
mcprotocollib = { module = "com.github.GeyserMC:mcprotocollib", version.ref = "mcprotocollib" } | ||
adventure-text-legacy = { module = "net.kyori:adventure-text-serializer-legacy", version.ref = "adventure-text" } | ||
floodgate-api = { group = "org.geysermc.floodgate", name = "api", version.ref = "floodgate" } | ||
mariadb-client = { module = "org.mariadb.jdbc:mariadb-java-client", version.ref = "mariadb-client" } | ||
|
||
fastutil-int-int-maps = { group = "com.nukkitx.fastutil", name = "fastutil-int-int-maps", version.ref = "fastutil" } | ||
fastutil-int-object-maps = { group = "com.nukkitx.fastutil", name = "fastutil-int-object-maps", version.ref = "fastutil" } | ||
fastutil-object-int-maps = { group = "com.nukkitx.fastutil", name = "fastutil-object-int-maps", version.ref = "fastutil" } | ||
fastutil-object-object-maps = { group = "com.nukkitx.fastutil", name = "fastutil-object-object-maps", version.ref = "fastutil" } | ||
|
||
checker-qual = { module = "org.checkerframework:checker-qual", version.ref = "checker-qual" } | ||
|
||
[plugins] | ||
indra = { id = "net.kyori.indra", version.ref = "indra" } | ||
indra-publishing = { id = "net.kyori.indra.publishing", version.ref = "indra" } | ||
indra-licenser-spotless = { id = "net.kyori.indra.licenser.spotless", version.ref = "indra" } | ||
paperweight = { id = "io.papermc.paperweight.userdev", version.ref = "paperweight" } | ||
runpaper = { id = "xyz.jpenilla.run-paper", version.ref = "runpaper" } | ||
|
||
[bundles] | ||
protocol = ["protocol-codec", "protocol-connection", "protocol-common"] | ||
fastutil = [ "fastutil-int-int-maps", "fastutil-int-object-maps", "fastutil-object-int-maps", "fastutil-object-object-maps" ] |
Binary file not shown.
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
Oops, something went wrong.