From 93493a971caf4184c0900d0f2b0f3c2ad02558b4 Mon Sep 17 00:00:00 2001 From: Brendan Golden Date: Wed, 7 May 2025 21:56:39 +0100 Subject: [PATCH 01/78] feat: add games to the listfor geyser yupdates --- .forgejo/workflows/geyser.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.forgejo/workflows/geyser.yml b/.forgejo/workflows/geyser.yml index 6decff4..cf7a7d2 100644 --- a/.forgejo/workflows/geyser.yml +++ b/.forgejo/workflows/geyser.yml @@ -46,3 +46,8 @@ jobs: with: branch: "anime_manga" token: ${{ secrets.PIPELINE_TOKEN }} + - name: "games" + uses: ./.forgejo/actions/update_branch + with: + branch: "games" + token: ${{ secrets.PIPELINE_TOKEN }} From c3f1f9bba00b7da50fcb293daa6d9e3b6813d660 Mon Sep 17 00:00:00 2001 From: Brendan Golden Date: Thu, 8 May 2025 14:21:34 +0100 Subject: [PATCH 02/78] ci: lets go back and see if old issues could be fixed with limiting the concurrency --- .forgejo/actions/update_branch/action.yml | 28 ------------- .forgejo/workflows/geyser.yml | 49 +++++++---------------- 2 files changed, 14 insertions(+), 63 deletions(-) delete mode 100644 .forgejo/actions/update_branch/action.yml diff --git a/.forgejo/actions/update_branch/action.yml b/.forgejo/actions/update_branch/action.yml deleted file mode 100644 index 4273335..0000000 --- a/.forgejo/actions/update_branch/action.yml +++ /dev/null @@ -1,28 +0,0 @@ -name: 'Update_Geyser' -description: 'Updates Geyser for a specified branch' -inputs: - branch: # id of input - description: 'what branch to update' - required: true - default: 'main' - token: # id of input - description: 'Token needed to commit changes' - required: true -runs: - using: "composite" - permissions: - # Give the default GITHUB_TOKEN write permission to commit and push the - # added or changed files to the repository. - contents: write - steps: - - uses: actions/checkout@v4 - with: - ref: ${{ inputs.branch }} - token: ${{ inputs.token }} - - run: nix run .#update_plugin -- update geyser - shell: bash - - uses: https://github.com/stefanzweifel/git-auto-commit-action@v5 - with: - commit_message: "Updated geyser for ${{ inputs.branch }}" - - run: git checkout main - shell: bash diff --git a/.forgejo/workflows/geyser.yml b/.forgejo/workflows/geyser.yml index cf7a7d2..72f3322 100644 --- a/.forgejo/workflows/geyser.yml +++ b/.forgejo/workflows/geyser.yml @@ -1,26 +1,19 @@ on: workflow_dispatch: - schedule: - cron: '0 0 * * *' -# using code from the nixos repo jobs: -# deploy_active: -# strategy: -# matrix: -# batch: [ active-core, active, active-ext ] -# runs-on: nix -# needs: [ deploy_dns ] -# steps: -# - uses: actions/checkout@v4 -# - run: colmena apply -v --on @${{ matrix.batch }} --show-trace -# shell: bash - update: -# strategy: -# matrix: -# branch: [ main, skynet, anime_manga ] + + strategy: + max-parallel: 1 + matrix: + branch: + - main + - skynet + - anime_manga + - games runs-on: nix permissions: # Give the default GITHUB_TOKEN write permission to commit and push the @@ -30,24 +23,10 @@ jobs: steps: - uses: actions/checkout@v4 with: - fetch-depth: 0 - - name: "main" - uses: ./.forgejo/actions/update_branch - with: - branch: "main" + ref: ${{ matrix.branch }} token: ${{ secrets.PIPELINE_TOKEN }} - - name: "skynet" - uses: ./.forgejo/actions/update_branch + - run: nix run .#update_plugin -- update geyser + shell: bash + - uses: https://github.com/stefanzweifel/git-auto-commit-action@v5 with: - branch: "skynet" - token: ${{ secrets.PIPELINE_TOKEN }} - - name: "anime_manga" - uses: ./.forgejo/actions/update_branch - with: - branch: "anime_manga" - token: ${{ secrets.PIPELINE_TOKEN }} - - name: "games" - uses: ./.forgejo/actions/update_branch - with: - branch: "games" - token: ${{ secrets.PIPELINE_TOKEN }} + commit_message: "Updated geyser for ${{ matrix.branch }}" \ No newline at end of file From 194daa9b00822336dd63658bdacf944be529925b Mon Sep 17 00:00:00 2001 From: Brendan Golden Date: Thu, 8 May 2025 14:24:55 +0100 Subject: [PATCH 03/78] ci: see if this limits running actions --- .forgejo/workflows/geyser.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.forgejo/workflows/geyser.yml b/.forgejo/workflows/geyser.yml index 72f3322..6ad3ac3 100644 --- a/.forgejo/workflows/geyser.yml +++ b/.forgejo/workflows/geyser.yml @@ -3,6 +3,10 @@ on: schedule: - cron: '0 0 * * *' +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true + jobs: update: From 519b3c70e118eaa93400f4e8f25b8225451aa138 Mon Sep 17 00:00:00 2001 From: Brendan Golden Date: Thu, 8 May 2025 14:27:17 +0100 Subject: [PATCH 04/78] ci: see if this limits running actions 2 --- .forgejo/workflows/geyser.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.forgejo/workflows/geyser.yml b/.forgejo/workflows/geyser.yml index 6ad3ac3..bc659b3 100644 --- a/.forgejo/workflows/geyser.yml +++ b/.forgejo/workflows/geyser.yml @@ -4,7 +4,7 @@ on: - cron: '0 0 * * *' concurrency: - group: ${{ github.workflow }}-${{ github.ref }} + group: "update_geyser" cancel-in-progress: true jobs: From 2932232f14c41c2d8244c0ffe347fa2776f7ad05 Mon Sep 17 00:00:00 2001 From: Brendan Golden Date: Thu, 8 May 2025 14:31:23 +0100 Subject: [PATCH 05/78] ci: see if this limits running actions 3 --- .forgejo/workflows/geyser.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.forgejo/workflows/geyser.yml b/.forgejo/workflows/geyser.yml index bc659b3..ee5318c 100644 --- a/.forgejo/workflows/geyser.yml +++ b/.forgejo/workflows/geyser.yml @@ -3,12 +3,11 @@ on: schedule: - cron: '0 0 * * *' -concurrency: - group: "update_geyser" - cancel-in-progress: true - jobs: update: + concurrency: + group: "update_geyser" + cancel-in-progress: true strategy: max-parallel: 1 From 407576de60ad1d16f94333dcaaa8260c37c13b44 Mon Sep 17 00:00:00 2001 From: Brendan Golden Date: Thu, 8 May 2025 14:59:39 +0100 Subject: [PATCH 06/78] ci: more testing tos ee if I can make this action mroe generic also usign old geyser for testing --- .forgejo/workflows/geyser.yml | 39 ++++++++++++++++++++--------------- plugins/geyser.pw.toml | 6 +++--- 2 files changed, 25 insertions(+), 20 deletions(-) diff --git a/.forgejo/workflows/geyser.yml b/.forgejo/workflows/geyser.yml index ee5318c..c557b3b 100644 --- a/.forgejo/workflows/geyser.yml +++ b/.forgejo/workflows/geyser.yml @@ -5,18 +5,6 @@ on: jobs: update: - concurrency: - group: "update_geyser" - cancel-in-progress: true - - strategy: - max-parallel: 1 - matrix: - branch: - - main - - skynet - - anime_manga - - games runs-on: nix permissions: # Give the default GITHUB_TOKEN write permission to commit and push the @@ -26,10 +14,27 @@ jobs: steps: - uses: actions/checkout@v4 with: - ref: ${{ matrix.branch }} + fetch-depth: 0 token: ${{ secrets.PIPELINE_TOKEN }} - - run: nix run .#update_plugin -- update geyser + - name: setup git config + run: | + # setup the username and email. I tend to use 'GitHub Actions Bot' with no email by default + git config user.name "Skynet" + git config user.email "<>" + - name: Update each branch shell: bash - - uses: https://github.com/stefanzweifel/git-auto-commit-action@v5 - with: - commit_message: "Updated geyser for ${{ matrix.branch }}" \ No newline at end of file + run: | + branches=() + eval "$(git for-each-ref --shell --format='branches+=(%(refname))' refs/heads/)" + for branch in "${branches[@]}"; do + git checkout $branch + nix run .#update_plugin -- update geyser + + # these will only succeed if there are changes + git add --all + git commit -m "Updated geyser for $branch" + git push + done +# - uses: https://github.com/stefanzweifel/git-auto-commit-action@v5 +# with: +# commit_message: "Updated geyser for ${{ matrix.branch }}" \ No newline at end of file diff --git a/plugins/geyser.pw.toml b/plugins/geyser.pw.toml index ef58728..39e97b3 100644 --- a/plugins/geyser.pw.toml +++ b/plugins/geyser.pw.toml @@ -3,11 +3,11 @@ filename = "Geyser-Spigot.jar" side = "server" [download] -url = "https://cdn.modrinth.com/data/wKkoqHrH/versions/xIN8Ujrm/Geyser-Spigot.jar" +url = "https://cdn.modrinth.com/data/wKkoqHrH/versions/EH2jBKvB/Geyser-Spigot.jar" hash-format = "sha512" -hash = "6ac40376aa5603e1a8de7c4fe39fe4925c76e26b1a66a1a9db43995542195d620c7adf1079ba75c7205d9f62ab16f3897fca3da0c7fa6ad18fab63a6ac2a6304" +hash = "a4004156cd6a73574cce153734566c6c63380f76bfc0982849a65741481143e147e20e03db957d4fc6670b57a541f6f9325287269f13a7225165540ad7d55690" [update] [update.modrinth] mod-id = "wKkoqHrH" -version = "xIN8Ujrm" +version = "EH2jBKvB" From 909604160a9e5744f387e73b855f0e925af37590 Mon Sep 17 00:00:00 2001 From: Brendan Golden Date: Thu, 8 May 2025 15:04:48 +0100 Subject: [PATCH 07/78] ci: debugging --- .forgejo/workflows/geyser.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.forgejo/workflows/geyser.yml b/.forgejo/workflows/geyser.yml index c557b3b..0f8ef49 100644 --- a/.forgejo/workflows/geyser.yml +++ b/.forgejo/workflows/geyser.yml @@ -24,10 +24,12 @@ jobs: - name: Update each branch shell: bash run: | + git branch branches=() eval "$(git for-each-ref --shell --format='branches+=(%(refname))' refs/heads/)" for branch in "${branches[@]}"; do git checkout $branch + git status nix run .#update_plugin -- update geyser # these will only succeed if there are changes From 6f3686a47e5b88fc97fdf3523b4ad2179fe6edca Mon Sep 17 00:00:00 2001 From: Brendan Golden Date: Thu, 8 May 2025 15:09:18 +0100 Subject: [PATCH 08/78] ci: debugging2 --- .forgejo/workflows/geyser.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.forgejo/workflows/geyser.yml b/.forgejo/workflows/geyser.yml index 0f8ef49..994d21e 100644 --- a/.forgejo/workflows/geyser.yml +++ b/.forgejo/workflows/geyser.yml @@ -24,11 +24,10 @@ jobs: - name: Update each branch shell: bash run: | - git branch branches=() eval "$(git for-each-ref --shell --format='branches+=(%(refname))' refs/heads/)" for branch in "${branches[@]}"; do - git checkout $branch + git switch $branch git status nix run .#update_plugin -- update geyser From 3f7ba2bc7fce0abfd0a27398669d0569270c3a64 Mon Sep 17 00:00:00 2001 From: Brendan Golden Date: Thu, 8 May 2025 15:17:22 +0100 Subject: [PATCH 09/78] ci: debugging3 --- .forgejo/workflows/geyser.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.forgejo/workflows/geyser.yml b/.forgejo/workflows/geyser.yml index 994d21e..baaab45 100644 --- a/.forgejo/workflows/geyser.yml +++ b/.forgejo/workflows/geyser.yml @@ -27,13 +27,15 @@ jobs: branches=() eval "$(git for-each-ref --shell --format='branches+=(%(refname))' refs/heads/)" for branch in "${branches[@]}"; do - git switch $branch + # need to convert "refs/heads/main" to "main" + branch_local=$(echo "$branch" | awk -F'[\\\\/]' ' { print $3 }') + git switch $branch_local git status nix run .#update_plugin -- update geyser # these will only succeed if there are changes git add --all - git commit -m "Updated geyser for $branch" + git commit -m "Updated geyser for $branch_local" git push done # - uses: https://github.com/stefanzweifel/git-auto-commit-action@v5 From fb9929fa30e510064b2cbb923847a3178aa3d880 Mon Sep 17 00:00:00 2001 From: Brendan Golden Date: Thu, 8 May 2025 15:19:13 +0100 Subject: [PATCH 10/78] ci: debugging4 --- .forgejo/workflows/geyser.yml | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/.forgejo/workflows/geyser.yml b/.forgejo/workflows/geyser.yml index baaab45..52fd98c 100644 --- a/.forgejo/workflows/geyser.yml +++ b/.forgejo/workflows/geyser.yml @@ -29,14 +29,15 @@ jobs: for branch in "${branches[@]}"; do # need to convert "refs/heads/main" to "main" branch_local=$(echo "$branch" | awk -F'[\\\\/]' ' { print $3 }') - git switch $branch_local - git status - nix run .#update_plugin -- update geyser + echo $branch_local + #git switch $branch_local + #git status + #nix run .#update_plugin -- update geyser - # these will only succeed if there are changes - git add --all - git commit -m "Updated geyser for $branch_local" - git push + ## these will only succeed if there are changes + #git add --all + #git commit -m "Updated geyser for $branch_local" + #git push done # - uses: https://github.com/stefanzweifel/git-auto-commit-action@v5 # with: From 0de011828d7d67d8f91b4a25e3145a1b55aeee65 Mon Sep 17 00:00:00 2001 From: Brendan Golden Date: Thu, 8 May 2025 15:21:30 +0100 Subject: [PATCH 11/78] ci: debugging5 --- .forgejo/workflows/geyser.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.forgejo/workflows/geyser.yml b/.forgejo/workflows/geyser.yml index 52fd98c..8a45000 100644 --- a/.forgejo/workflows/geyser.yml +++ b/.forgejo/workflows/geyser.yml @@ -24,6 +24,7 @@ jobs: - name: Update each branch shell: bash run: | + git fetch --all branches=() eval "$(git for-each-ref --shell --format='branches+=(%(refname))' refs/heads/)" for branch in "${branches[@]}"; do From 7f780338109c6947b0019330ce07f4bcff85e92b Mon Sep 17 00:00:00 2001 From: Brendan Golden Date: Thu, 8 May 2025 15:23:52 +0100 Subject: [PATCH 12/78] ci: debugging6 --- .forgejo/workflows/geyser.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.forgejo/workflows/geyser.yml b/.forgejo/workflows/geyser.yml index 8a45000..336dadc 100644 --- a/.forgejo/workflows/geyser.yml +++ b/.forgejo/workflows/geyser.yml @@ -25,6 +25,7 @@ jobs: shell: bash run: | git fetch --all + git pull --all branches=() eval "$(git for-each-ref --shell --format='branches+=(%(refname))' refs/heads/)" for branch in "${branches[@]}"; do From e5ed381c6424362198294dab071a411781fb8148 Mon Sep 17 00:00:00 2001 From: Brendan Golden Date: Thu, 8 May 2025 15:26:50 +0100 Subject: [PATCH 13/78] ci: debugging7 --- .forgejo/workflows/geyser.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.forgejo/workflows/geyser.yml b/.forgejo/workflows/geyser.yml index 336dadc..72f8369 100644 --- a/.forgejo/workflows/geyser.yml +++ b/.forgejo/workflows/geyser.yml @@ -27,10 +27,10 @@ jobs: git fetch --all git pull --all branches=() - eval "$(git for-each-ref --shell --format='branches+=(%(refname))' refs/heads/)" + eval "$(git for-each-ref --shell --format='branches+=(%(refname))' refs/remotes/origin/)" for branch in "${branches[@]}"; do # need to convert "refs/heads/main" to "main" - branch_local=$(echo "$branch" | awk -F'[\\\\/]' ' { print $3 }') + branch_local=$(echo "$branch" | awk -F'[\\\\/]' ' { print $4 }') echo $branch_local #git switch $branch_local #git status From c73e874fc48c4b17e432a7a64b7c18e6a1ade4d4 Mon Sep 17 00:00:00 2001 From: Brendan Golden Date: Thu, 8 May 2025 15:28:03 +0100 Subject: [PATCH 14/78] ci: this should update every branch, even future ones --- .forgejo/workflows/geyser.yml | 17 +++++++---------- 1 file changed, 7 insertions(+), 10 deletions(-) diff --git a/.forgejo/workflows/geyser.yml b/.forgejo/workflows/geyser.yml index 72f8369..fd303c4 100644 --- a/.forgejo/workflows/geyser.yml +++ b/.forgejo/workflows/geyser.yml @@ -24,22 +24,19 @@ jobs: - name: Update each branch shell: bash run: | - git fetch --all - git pull --all branches=() eval "$(git for-each-ref --shell --format='branches+=(%(refname))' refs/remotes/origin/)" for branch in "${branches[@]}"; do - # need to convert "refs/heads/main" to "main" + # need to convert "'refs/remotes/origin/main" to "main" branch_local=$(echo "$branch" | awk -F'[\\\\/]' ' { print $4 }') - echo $branch_local - #git switch $branch_local - #git status - #nix run .#update_plugin -- update geyser + git switch $branch_local + git status + nix run .#update_plugin -- update geyser ## these will only succeed if there are changes - #git add --all - #git commit -m "Updated geyser for $branch_local" - #git push + git add --all + git commit -m "Updated geyser for $branch_local" + git push done # - uses: https://github.com/stefanzweifel/git-auto-commit-action@v5 # with: From e1c37c1ce38fedd03f00c12e6eb7bfd99faf5208 Mon Sep 17 00:00:00 2001 From: Brendan Golden Date: Thu, 8 May 2025 15:29:48 +0100 Subject: [PATCH 15/78] ci: the TRUE will set you free --- .forgejo/workflows/geyser.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.forgejo/workflows/geyser.yml b/.forgejo/workflows/geyser.yml index fd303c4..ce36206 100644 --- a/.forgejo/workflows/geyser.yml +++ b/.forgejo/workflows/geyser.yml @@ -34,9 +34,9 @@ jobs: nix run .#update_plugin -- update geyser ## these will only succeed if there are changes - git add --all - git commit -m "Updated geyser for $branch_local" - git push + git add --all || true + git commit -m "Updated geyser for $branch_local" || true + git push || true done # - uses: https://github.com/stefanzweifel/git-auto-commit-action@v5 # with: From b306108dcbf4cc9c1d229c53e4c169bd68056440 Mon Sep 17 00:00:00 2001 From: Skynet <> Date: Thu, 8 May 2025 14:31:14 +0000 Subject: [PATCH 16/78] Updated geyser for main --- plugins/geyser.pw.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/plugins/geyser.pw.toml b/plugins/geyser.pw.toml index 39e97b3..ef58728 100644 --- a/plugins/geyser.pw.toml +++ b/plugins/geyser.pw.toml @@ -3,11 +3,11 @@ filename = "Geyser-Spigot.jar" side = "server" [download] -url = "https://cdn.modrinth.com/data/wKkoqHrH/versions/EH2jBKvB/Geyser-Spigot.jar" +url = "https://cdn.modrinth.com/data/wKkoqHrH/versions/xIN8Ujrm/Geyser-Spigot.jar" hash-format = "sha512" -hash = "a4004156cd6a73574cce153734566c6c63380f76bfc0982849a65741481143e147e20e03db957d4fc6670b57a541f6f9325287269f13a7225165540ad7d55690" +hash = "6ac40376aa5603e1a8de7c4fe39fe4925c76e26b1a66a1a9db43995542195d620c7adf1079ba75c7205d9f62ab16f3897fca3da0c7fa6ad18fab63a6ac2a6304" [update] [update.modrinth] mod-id = "wKkoqHrH" -version = "EH2jBKvB" +version = "xIN8Ujrm" From 286526026e15ee377e8c87e0ccbb9c96bf28395e Mon Sep 17 00:00:00 2001 From: Brendan Golden Date: Thu, 8 May 2025 17:28:32 +0100 Subject: [PATCH 17/78] doc: keep track of the ports in use --- docs/Ports.md | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 docs/Ports.md diff --git a/docs/Ports.md b/docs/Ports.md new file mode 100644 index 0000000..9cf3847 --- /dev/null +++ b/docs/Ports.md @@ -0,0 +1,26 @@ +# Ports allocated + +## Minecraft +Ports are grouped together like so: +* 255XY - Java Port +* 244XY - Bedrock Port +* 233XY - Voice Chat port + +| XY | Society | Bot | +|----|----------|-----| +| 18 | Computer | Y | +| 19 | Computer | Y | +| 20 | | | +| 21 | Games | | +| 22 | PhilDeb | | +| 23 | Anime | Y | +| 24 | | | +| 25 | | | + + +## Steam +This covers games like TF2 and CSGO. +Currently just for Compsoc + +* 27015 +* 27020 From 8f877d3a56407a74fbe3b8c50e0b56993743e462 Mon Sep 17 00:00:00 2001 From: Brendan Golden Date: Thu, 8 May 2025 17:39:44 +0100 Subject: [PATCH 18/78] doc: added how to set up a server as well as what suers need to do --- docs/Server_Setup_Minecraft.md | 88 ++++++++++++++++++++++++++++++++++ docs/media/add_allocation.png | 3 ++ 2 files changed, 91 insertions(+) create mode 100644 docs/Server_Setup_Minecraft.md create mode 100644 docs/media/add_allocation.png diff --git a/docs/Server_Setup_Minecraft.md b/docs/Server_Setup_Minecraft.md new file mode 100644 index 0000000..55c3c3f --- /dev/null +++ b/docs/Server_Setup_Minecraft.md @@ -0,0 +1,88 @@ +# Server Setup + +## Requirements + +### Ports +* 255XY - Java Port +* 244XY - Bedrock Port +* 233XY - Voice Chat port + +## Setup + +### Config +1. In [this repo][config_01] create a new branch for the club/soc who wants the server. +2. Push this branch to Forgejo. + +[config_01]: https://forgejo.skynet.ie/Skynet/minecraft_plugins_v2 + +### Server +1. In the admin panel create a new server. [link][setup_01] +2. ``Information`` + * ``Primary Allocation`` + You will need to create allocations for both ports using the add allocation button + ![add_allocation.png][setup_02] + * ``Owner`` + * If the Club/Soc already has an account then use that + * Else use the plus: + ![add_allocation.png][setup_02] + To create a new account for them. + * ``username`` - THis should be the Club/Soc as lowercase. + Check with Admin if they already have a Skynet account, if they have then use that. + * ``email`` - use ``$username@skynet.ie`` or ``$username@ulwolves.ie`` + Do not use any other email. +3. ``Egg Configuration`` + * For the egg choose ``mcsleepingserverstarter-Packwiz-Purpur-Geyser-Floodgate``. + * For ``{{PACKWIZ_URL}}`` it is ``https://forgejo.skynet.ie/Skynet/minecraft_plugins_v2/raw/branch/$BRANCHNAME/pack.toml``. + * ``$BRANCHNAME`` is the name of the branch as done in [Config](#config). +4. Move onto ``Environment Configuration`` + * Memory give it about ``6144`` MB or so. + * Swap Memory give it about ``1024`` + * ``Feature Limits`` give one or two backups. + +[setup_01]: https://panel.games.skynet.ie/admin/servers/create +[setup_02]: media/add_allocation.png + +### Minecraft +Now in the panel ye need to modify some files. +If an option is not already in teh file then create it. + +1. ``server.properties`` + * ``enforce-secure-profile=false`` - This allows bedrock players to talk in text chat +2. ``sleepingSettings.yml`` + * ``serverName`` - This is what gets shown on users server listings when teh server is sleeping. + ``GSoc, connect to wake up then reconnect in a min`` is what is on teh GSoc one, + * ``serverPort`` - Use the Java port ``255XY`` + * ``bedrockPort`` - Use the Bedrock port ``244XY`` +3. ``plugins/Geyser-Spigot/config.yml`` + * ``bedrock.port`` - Use the Bedrock port ``244XY`` +4. ``plugins/voicechat/voicechat-server.properties`` + * ``port`` - Use the Voice port ``233XY`` + + +### DNS +An entry needs to be added to the [Forgejo DNS Config][dns_01] in the form of ``minecraft.$NAME``. +Where ``$NAME`` is the name of teh club/soc, lowercase. + +[dns_01]: https://forgejo.skynet.ie/Skynet/nixos/src/branch/main/applications/games/minecraft.nix#L27 + +### Users + +#### Discord Bot +If the Club/Soc uses the Skynet Discord bot then you will need to add your username to it. +Instructions can be found here: [link][users_04] + +#### Java +* Connect via ``minecraft.$NAME.games.skynet.ie`` +* If you want to use voice chat install it locally + * [Modrinth][users_02] + * [Wiki][users_03] (Has more detailed install instructions) + +#### Bedrock +* Connect via ``minecraft.$NAME.games.skynet.ie`` + * Port is ``244XY`` +* Bedrock users need to [link][users_01] their account to join the server + +[users_01]: https://link.geysermc.org/method/online +[users_02]: https://modrinth.com/plugin/simple-voice-chat +[users_03]: https://modrepo.de/minecraft/voicechat/wiki/installation +[users_04]: https://forgejo.skynet.ie/Skynet/discord-bot/src/branch/main/doc/User.md#minecraft \ No newline at end of file diff --git a/docs/media/add_allocation.png b/docs/media/add_allocation.png new file mode 100644 index 0000000..f96cf38 --- /dev/null +++ b/docs/media/add_allocation.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65145e8d9089d551162ce918919a16c93c2c685aa13cf344e393ebc9b52cdda8 +size 505 From 653ea3c7504634f5b6eb9f004e76f6a95337b8f2 Mon Sep 17 00:00:00 2001 From: Brendan Golden Date: Thu, 8 May 2025 17:47:12 +0100 Subject: [PATCH 19/78] doc: added link tot eh original repo for config --- docs/Server_Setup_Minecraft.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/Server_Setup_Minecraft.md b/docs/Server_Setup_Minecraft.md index 55c3c3f..ea0a5ed 100644 --- a/docs/Server_Setup_Minecraft.md +++ b/docs/Server_Setup_Minecraft.md @@ -49,6 +49,7 @@ If an option is not already in teh file then create it. 1. ``server.properties`` * ``enforce-secure-profile=false`` - This allows bedrock players to talk in text chat 2. ``sleepingSettings.yml`` + * See the [Github repo][minecraft_01] for full config details * ``serverName`` - This is what gets shown on users server listings when teh server is sleeping. ``GSoc, connect to wake up then reconnect in a min`` is what is on teh GSoc one, * ``serverPort`` - Use the Java port ``255XY`` @@ -58,6 +59,7 @@ If an option is not already in teh file then create it. 4. ``plugins/voicechat/voicechat-server.properties`` * ``port`` - Use the Voice port ``233XY`` +[minecraft_01]: https://github.com/vincss/mcsleepingserverstarter ### DNS An entry needs to be added to the [Forgejo DNS Config][dns_01] in the form of ``minecraft.$NAME``. From 0fd8903755ee3d4a5b2a6aff5d3513030a685821 Mon Sep 17 00:00:00 2001 From: Brendan Golden Date: Thu, 8 May 2025 18:08:24 +0100 Subject: [PATCH 20/78] doc: got teh wrong ports --- docs/Ports.md | 7 +++++-- docs/Server_Setup_Minecraft.md | 12 ++++++------ 2 files changed, 11 insertions(+), 8 deletions(-) diff --git a/docs/Ports.md b/docs/Ports.md index 9cf3847..2d00aaa 100644 --- a/docs/Ports.md +++ b/docs/Ports.md @@ -3,8 +3,11 @@ ## Minecraft Ports are grouped together like so: * 255XY - Java Port -* 244XY - Bedrock Port -* 233XY - Voice Chat port + * TCP +* 244XY - Voice Chat port + * UDP +* 233XY - Bedrock Port + * UDP | XY | Society | Bot | |----|----------|-----| diff --git a/docs/Server_Setup_Minecraft.md b/docs/Server_Setup_Minecraft.md index ea0a5ed..c309cdf 100644 --- a/docs/Server_Setup_Minecraft.md +++ b/docs/Server_Setup_Minecraft.md @@ -4,8 +4,8 @@ ### Ports * 255XY - Java Port -* 244XY - Bedrock Port -* 233XY - Voice Chat port +* 244XY - Voice Chat port +* 233XY - Bedrock Port ## Setup @@ -26,7 +26,7 @@ * Else use the plus: ![add_allocation.png][setup_02] To create a new account for them. - * ``username`` - THis should be the Club/Soc as lowercase. + * ``username`` - This should be the Club/Soc as lowercase. Check with Admin if they already have a Skynet account, if they have then use that. * ``email`` - use ``$username@skynet.ie`` or ``$username@ulwolves.ie`` Do not use any other email. @@ -53,11 +53,11 @@ If an option is not already in teh file then create it. * ``serverName`` - This is what gets shown on users server listings when teh server is sleeping. ``GSoc, connect to wake up then reconnect in a min`` is what is on teh GSoc one, * ``serverPort`` - Use the Java port ``255XY`` - * ``bedrockPort`` - Use the Bedrock port ``244XY`` + * ``bedrockPort`` - Use the Bedrock port ``233XY`` 3. ``plugins/Geyser-Spigot/config.yml`` - * ``bedrock.port`` - Use the Bedrock port ``244XY`` + * ``bedrock.port`` - Use the Bedrock port ``233XY`` 4. ``plugins/voicechat/voicechat-server.properties`` - * ``port`` - Use the Voice port ``233XY`` + * ``port`` - Use the Voice port ``244XY`` [minecraft_01]: https://github.com/vincss/mcsleepingserverstarter From c40fd4c51df967a9f57054be91ddd371bd7fa2b6 Mon Sep 17 00:00:00 2001 From: Brendan Golden Date: Thu, 8 May 2025 18:16:34 +0100 Subject: [PATCH 21/78] doc: a bit of renaming for naming schemes --- docs/{Ports.md => Admin_Ports.md} | 0 docs/{Server_Setup_Minecraft.md => Minecraft_Setup.md} | 0 2 files changed, 0 insertions(+), 0 deletions(-) rename docs/{Ports.md => Admin_Ports.md} (100%) rename docs/{Server_Setup_Minecraft.md => Minecraft_Setup.md} (100%) diff --git a/docs/Ports.md b/docs/Admin_Ports.md similarity index 100% rename from docs/Ports.md rename to docs/Admin_Ports.md diff --git a/docs/Server_Setup_Minecraft.md b/docs/Minecraft_Setup.md similarity index 100% rename from docs/Server_Setup_Minecraft.md rename to docs/Minecraft_Setup.md From 6ab0b310548b9a29655c9f446aa6ea940006767c Mon Sep 17 00:00:00 2001 From: Brendan Golden Date: Thu, 8 May 2025 18:17:31 +0100 Subject: [PATCH 22/78] doc: split out teh users file --- docs/Minecraft_Setup.md | 24 +----------------------- docs/Minecraft_Users.md | 21 +++++++++++++++++++++ 2 files changed, 22 insertions(+), 23 deletions(-) create mode 100644 docs/Minecraft_Users.md diff --git a/docs/Minecraft_Setup.md b/docs/Minecraft_Setup.md index c309cdf..37961cd 100644 --- a/docs/Minecraft_Setup.md +++ b/docs/Minecraft_Setup.md @@ -65,26 +65,4 @@ If an option is not already in teh file then create it. An entry needs to be added to the [Forgejo DNS Config][dns_01] in the form of ``minecraft.$NAME``. Where ``$NAME`` is the name of teh club/soc, lowercase. -[dns_01]: https://forgejo.skynet.ie/Skynet/nixos/src/branch/main/applications/games/minecraft.nix#L27 - -### Users - -#### Discord Bot -If the Club/Soc uses the Skynet Discord bot then you will need to add your username to it. -Instructions can be found here: [link][users_04] - -#### Java -* Connect via ``minecraft.$NAME.games.skynet.ie`` -* If you want to use voice chat install it locally - * [Modrinth][users_02] - * [Wiki][users_03] (Has more detailed install instructions) - -#### Bedrock -* Connect via ``minecraft.$NAME.games.skynet.ie`` - * Port is ``244XY`` -* Bedrock users need to [link][users_01] their account to join the server - -[users_01]: https://link.geysermc.org/method/online -[users_02]: https://modrinth.com/plugin/simple-voice-chat -[users_03]: https://modrepo.de/minecraft/voicechat/wiki/installation -[users_04]: https://forgejo.skynet.ie/Skynet/discord-bot/src/branch/main/doc/User.md#minecraft \ No newline at end of file +[dns_01]: https://forgejo.skynet.ie/Skynet/nixos/src/branch/main/applications/games/minecraft.nix#L27 \ No newline at end of file diff --git a/docs/Minecraft_Users.md b/docs/Minecraft_Users.md new file mode 100644 index 0000000..55900ef --- /dev/null +++ b/docs/Minecraft_Users.md @@ -0,0 +1,21 @@ +# Minecraft - Users + +## Discord Bot +If the Club/Soc uses the Skynet Discord bot then you will need to add your username to it. +Instructions can be found here: [link][users_04] + +## Java +* Connect via ``minecraft.$NAME.games.skynet.ie`` +* If you want to use voice chat install it locally + * [Modrinth][users_02] + * [Wiki][users_03] (Has more detailed install instructions) + +## Bedrock +* Connect via ``minecraft.$NAME.games.skynet.ie`` + * Port is ``244XY`` +* Bedrock users need to [link][users_01] their account to join the server + +[users_01]: https://link.geysermc.org/method/online +[users_02]: https://modrinth.com/plugin/simple-voice-chat +[users_03]: https://modrepo.de/minecraft/voicechat/wiki/installation +[users_04]: https://forgejo.skynet.ie/Skynet/discord-bot/src/branch/main/doc/User.md#minecraft \ No newline at end of file From 89fe5bead900112e82e6af33f12c818fee3d778d Mon Sep 17 00:00:00 2001 From: Brendan Golden Date: Thu, 8 May 2025 18:19:26 +0100 Subject: [PATCH 23/78] doc: mroe info about teh ports --- docs/Minecraft_Setup.md | 5 +++-- docs/Minecraft_Users.md | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/docs/Minecraft_Setup.md b/docs/Minecraft_Setup.md index 37961cd..84e95bf 100644 --- a/docs/Minecraft_Setup.md +++ b/docs/Minecraft_Setup.md @@ -19,8 +19,9 @@ 1. In the admin panel create a new server. [link][setup_01] 2. ``Information`` * ``Primary Allocation`` - You will need to create allocations for both ports using the add allocation button - ![add_allocation.png][setup_02] + * You will need to create allocations for both ports using the add allocation button + ![add_allocation.png][setup_02] + * Add allocations for all 3 ports ``255XY``/``244XY``/``233XY`` * ``Owner`` * If the Club/Soc already has an account then use that * Else use the plus: diff --git a/docs/Minecraft_Users.md b/docs/Minecraft_Users.md index 55900ef..e5ace52 100644 --- a/docs/Minecraft_Users.md +++ b/docs/Minecraft_Users.md @@ -12,7 +12,7 @@ Instructions can be found here: [link][users_04] ## Bedrock * Connect via ``minecraft.$NAME.games.skynet.ie`` - * Port is ``244XY`` + * Port is ``233XY`` * Bedrock users need to [link][users_01] their account to join the server [users_01]: https://link.geysermc.org/method/online From 58f1cfd110752c7734ce2cbf51b930cf0b5da256 Mon Sep 17 00:00:00 2001 From: Brendan Golden Date: Thu, 8 May 2025 21:44:57 +0100 Subject: [PATCH 24/78] fix: tidy up what goes into teh Pack --- .packwizignore | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.packwizignore b/.packwizignore index 746c876..591a7a4 100644 --- a/.packwizignore +++ b/.packwizignore @@ -1,8 +1,13 @@ -# DOnt add teh IDE's +# No need to have anything outside teh packwiz files inside teh pack +/.forgejo /.idea +/docs +/nix + +.git* # dont add nix stuff flake.* -/nix +# Dont add documentation *.md From e3f139b8b00059b10c742a339a6d484f8ebd938b Mon Sep 17 00:00:00 2001 From: Brendan Golden Date: Thu, 8 May 2025 21:45:17 +0100 Subject: [PATCH 25/78] fix: tidy up what goes into teh Pack 2 --- index.toml | 8 -------- pack.toml | 2 +- 2 files changed, 1 insertion(+), 9 deletions(-) diff --git a/index.toml b/index.toml index f55d256..a3cb8ab 100644 --- a/index.toml +++ b/index.toml @@ -1,13 +1,5 @@ hash-format = "sha256" -[[files]] -file = ".forgejo/actions/update_branch/action.yml" -hash = "d766aa4529c72ab0b451e518367bd8b58126697181670248397b13db6ab16cb2" - -[[files]] -file = ".forgejo/workflows/geyser.yml" -hash = "552840ea9426de23a692cd4f0dabef497acff0918d9fac9c074ad7a328cb2df5" - [[files]] file = "plugins/essentialsx-discord.pw.toml" hash = "3980e4f0ba4095425a76680031b9c469eda86845879160c34679d626b531c776" diff --git a/pack.toml b/pack.toml index 6503036..103e991 100644 --- a/pack.toml +++ b/pack.toml @@ -5,7 +5,7 @@ pack-format = "packwiz:1.1.0" [index] file = "index.toml" hash-format = "sha256" -hash = "93853b87fdbba621190f0cbacbcee0475f153c3d9eb744a8c2d0c2c4bfad4556" +hash = "7f2fb350c383602605a62cd5d4f9a3ca02a214dfc14cd6e480aca74c949168fa" [versions] minecraft = "1.21.5" From d9c4ea3dc71e726544dcfc0169f62b89b3dc1b9d Mon Sep 17 00:00:00 2001 From: Brendan Golden Date: Thu, 8 May 2025 21:59:05 +0100 Subject: [PATCH 26/78] feat: use a better version of packwiz --- nix/packwiz.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/nix/packwiz.nix b/nix/packwiz.nix index 93289fe..de16856 100644 --- a/nix/packwiz.nix +++ b/nix/packwiz.nix @@ -8,13 +8,13 @@ buildGoModule { pname = "packwiz"; - version = "0-unstable-2024-10-15"; + version = "0-unstable-2025-05-08"; src = fetchFromGitHub { owner = "Silver-Golden"; repo = "packwiz"; - rev = "453264019e54eae69f495078b0f3fa073f071e73"; - sha256 = "sha256-x6Z8MLaacZFlRYOVkTU+ffYtCJu4FAB3I2W/uQITwns="; + rev = "7ae91a58dbec3b76ce0aaaf15aeba3118021a34f"; + sha256 = "sha256-3zUkePmVJTpU9+mkLyeqlZ1KNVDXNsFvoh8ifwXya1M="; }; passthru.updateScript = unstableGitUpdater { }; From b0b4e95ba2a1e3b0b7f6a80322d3b6447c2a168c Mon Sep 17 00:00:00 2001 From: Brendan Golden Date: Thu, 8 May 2025 22:14:46 +0100 Subject: [PATCH 27/78] fix@ properly set teh datapack folder --- pack.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pack.toml b/pack.toml index 103e991..f8a626b 100644 --- a/pack.toml +++ b/pack.toml @@ -13,3 +13,4 @@ purpur = "2428" [options] acceptable-game-versions = ["1.21", "1.21.1", "1.21.2", "1.21.3", "1.21.4", "1.21.5"] +datapack-folder = "plugins" From 3432122a7379241eb167449d5f7bb113d9c35c13 Mon Sep 17 00:00:00 2001 From: Brendan Golden Date: Thu, 8 May 2025 22:24:59 +0100 Subject: [PATCH 28/78] feat: now hidfes what path ye are on and inbuilds the ``[Skynet Dev]`` into teh terminal --- flake.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index 03733d8..e7da961 100644 --- a/flake.nix +++ b/flake.nix @@ -7,7 +7,6 @@ }; nixConfig = { - bash-prompt-suffix = "[Skynet Dev] "; extra-substituters = "https://nix-cache.skynet.ie/skynet-cache"; extra-trusted-public-keys = "skynet-cache:zMFLzcRZPhUpjXUy8SF8Cf7KGAZwo98SKrzeXvdWABo="; }; @@ -29,6 +28,7 @@ devShells.default = pkgs.mkShell { name = "Skynet Mod env"; packages = packages_local; + shellHook = "export PS1='[Skynet Dev] '"; }; packages = { From db5f59618a0e38a6b21aa15183e1c30351b6da08 Mon Sep 17 00:00:00 2001 From: Skynet <> Date: Fri, 9 May 2025 17:37:56 +0000 Subject: [PATCH 29/78] Updated geyser for games --- index.toml | 2 +- pack.toml | 2 +- plugins/geyser.pw.toml | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/index.toml b/index.toml index f55d256..e8fa7d7 100644 --- a/index.toml +++ b/index.toml @@ -25,7 +25,7 @@ metafile = true [[files]] file = "plugins/geyser.pw.toml" -hash = "7dce743e21119b286b2014756451e7e860ef4a9d06d708eb449e835df5d54f2f" +hash = "ab4c0a76c694b5db867fb26f22296f69b380908711d2fbcf920280543ebaea5f" metafile = true [[files]] diff --git a/pack.toml b/pack.toml index 6503036..48ee066 100644 --- a/pack.toml +++ b/pack.toml @@ -5,7 +5,7 @@ pack-format = "packwiz:1.1.0" [index] file = "index.toml" hash-format = "sha256" -hash = "93853b87fdbba621190f0cbacbcee0475f153c3d9eb744a8c2d0c2c4bfad4556" +hash = "c3210d6a5b51dc8ee621c42f8b06ab00fdfaeb4d2894307782e3a5b24025b5a5" [versions] minecraft = "1.21.5" diff --git a/plugins/geyser.pw.toml b/plugins/geyser.pw.toml index ef58728..45abe81 100644 --- a/plugins/geyser.pw.toml +++ b/plugins/geyser.pw.toml @@ -3,11 +3,11 @@ filename = "Geyser-Spigot.jar" side = "server" [download] -url = "https://cdn.modrinth.com/data/wKkoqHrH/versions/xIN8Ujrm/Geyser-Spigot.jar" +url = "https://cdn.modrinth.com/data/wKkoqHrH/versions/HgleJE2n/Geyser-Spigot.jar" hash-format = "sha512" -hash = "6ac40376aa5603e1a8de7c4fe39fe4925c76e26b1a66a1a9db43995542195d620c7adf1079ba75c7205d9f62ab16f3897fca3da0c7fa6ad18fab63a6ac2a6304" +hash = "67030b6a82d346739fc9e9ac6ba4b82d4a699df8f93cc740f766b846d4a4182c20fb62e17ea68f36e298bc3efe8531f51ac4f455beccd8aed046ed1db9d4fcf8" [update] [update.modrinth] mod-id = "wKkoqHrH" -version = "xIN8Ujrm" +version = "HgleJE2n" From d63b18385843f1de39dd69056207bfa2023f6c93 Mon Sep 17 00:00:00 2001 From: Skynet <> Date: Thu, 15 May 2025 00:01:29 +0000 Subject: [PATCH 30/78] Updated geyser for games --- index.toml | 2 +- pack.toml | 2 +- plugins/geyser.pw.toml | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/index.toml b/index.toml index e8fa7d7..1a967b8 100644 --- a/index.toml +++ b/index.toml @@ -25,7 +25,7 @@ metafile = true [[files]] file = "plugins/geyser.pw.toml" -hash = "ab4c0a76c694b5db867fb26f22296f69b380908711d2fbcf920280543ebaea5f" +hash = "cc0a36dd060c7aaff62700fb23937dd36f70f2a5614bb8180b75d550446da322" metafile = true [[files]] diff --git a/pack.toml b/pack.toml index 48ee066..44ea7e0 100644 --- a/pack.toml +++ b/pack.toml @@ -5,7 +5,7 @@ pack-format = "packwiz:1.1.0" [index] file = "index.toml" hash-format = "sha256" -hash = "c3210d6a5b51dc8ee621c42f8b06ab00fdfaeb4d2894307782e3a5b24025b5a5" +hash = "84dca15375320dbe6d45af0dcccb63e9022983d6c105d1cc57962e4edee91d16" [versions] minecraft = "1.21.5" diff --git a/plugins/geyser.pw.toml b/plugins/geyser.pw.toml index 45abe81..9cb14d0 100644 --- a/plugins/geyser.pw.toml +++ b/plugins/geyser.pw.toml @@ -3,11 +3,11 @@ filename = "Geyser-Spigot.jar" side = "server" [download] -url = "https://cdn.modrinth.com/data/wKkoqHrH/versions/HgleJE2n/Geyser-Spigot.jar" +url = "https://cdn.modrinth.com/data/wKkoqHrH/versions/mc1Ogrh1/Geyser-Spigot.jar" hash-format = "sha512" -hash = "67030b6a82d346739fc9e9ac6ba4b82d4a699df8f93cc740f766b846d4a4182c20fb62e17ea68f36e298bc3efe8531f51ac4f455beccd8aed046ed1db9d4fcf8" +hash = "8cab28fdb758ad7592a6091006f524e1622ff1e860442e660edacd3d92d810191073ede907de48bb0c94ac0427628cfe57208581452ef084353bf5c7226caf8e" [update] [update.modrinth] mod-id = "wKkoqHrH" -version = "HgleJE2n" +version = "mc1Ogrh1" From 149237909445af8e11aeb6af5535ce550a36f349 Mon Sep 17 00:00:00 2001 From: Brendan Golden Date: Thu, 15 May 2025 08:25:13 +0100 Subject: [PATCH 31/78] fix: better handling of lfs --- .forgejo/workflows/geyser.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.forgejo/workflows/geyser.yml b/.forgejo/workflows/geyser.yml index ce36206..69d8f20 100644 --- a/.forgejo/workflows/geyser.yml +++ b/.forgejo/workflows/geyser.yml @@ -16,6 +16,15 @@ jobs: with: fetch-depth: 0 token: ${{ secrets.PIPELINE_TOKEN }} + - name: "Get LFS objects" + uses: https://forgejo.skynet.ie/Skynet/actions/get_lfs@v3 + with: + repository: ${{ gitea.repository }} + ref_name: ${{ gitea.ref_name }} + - name: Get all LFS objects + run: | + # Pull in all objects for all branches + git lfs fetch --all - name: setup git config run: | # setup the username and email. I tend to use 'GitHub Actions Bot' with no email by default @@ -30,6 +39,7 @@ jobs: # need to convert "'refs/remotes/origin/main" to "main" branch_local=$(echo "$branch" | awk -F'[\\\\/]' ' { print $4 }') git switch $branch_local + git lfs pull git status nix run .#update_plugin -- update geyser From a7d8333d6879db79579872552a2d0482af97feb8 Mon Sep 17 00:00:00 2001 From: Skynet <> Date: Thu, 15 May 2025 07:29:06 +0000 Subject: [PATCH 32/78] Updated geyser for main --- index.toml | 2 +- pack.toml | 2 +- plugins/geyser.pw.toml | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/index.toml b/index.toml index a3cb8ab..f4cda0a 100644 --- a/index.toml +++ b/index.toml @@ -17,7 +17,7 @@ metafile = true [[files]] file = "plugins/geyser.pw.toml" -hash = "7dce743e21119b286b2014756451e7e860ef4a9d06d708eb449e835df5d54f2f" +hash = "cc0a36dd060c7aaff62700fb23937dd36f70f2a5614bb8180b75d550446da322" metafile = true [[files]] diff --git a/pack.toml b/pack.toml index f8a626b..bbc1e50 100644 --- a/pack.toml +++ b/pack.toml @@ -5,7 +5,7 @@ pack-format = "packwiz:1.1.0" [index] file = "index.toml" hash-format = "sha256" -hash = "7f2fb350c383602605a62cd5d4f9a3ca02a214dfc14cd6e480aca74c949168fa" +hash = "9acfdc214b58861dd753d0410ca6d2c6964ec8cdb50d06468cd5f561615f7ea7" [versions] minecraft = "1.21.5" diff --git a/plugins/geyser.pw.toml b/plugins/geyser.pw.toml index ef58728..9cb14d0 100644 --- a/plugins/geyser.pw.toml +++ b/plugins/geyser.pw.toml @@ -3,11 +3,11 @@ filename = "Geyser-Spigot.jar" side = "server" [download] -url = "https://cdn.modrinth.com/data/wKkoqHrH/versions/xIN8Ujrm/Geyser-Spigot.jar" +url = "https://cdn.modrinth.com/data/wKkoqHrH/versions/mc1Ogrh1/Geyser-Spigot.jar" hash-format = "sha512" -hash = "6ac40376aa5603e1a8de7c4fe39fe4925c76e26b1a66a1a9db43995542195d620c7adf1079ba75c7205d9f62ab16f3897fca3da0c7fa6ad18fab63a6ac2a6304" +hash = "8cab28fdb758ad7592a6091006f524e1622ff1e860442e660edacd3d92d810191073ede907de48bb0c94ac0427628cfe57208581452ef084353bf5c7226caf8e" [update] [update.modrinth] mod-id = "wKkoqHrH" -version = "xIN8Ujrm" +version = "mc1Ogrh1" From d3e2e44d96b78901e069c29238d03015e2b6b004 Mon Sep 17 00:00:00 2001 From: Skynet <> Date: Fri, 16 May 2025 00:01:12 +0000 Subject: [PATCH 33/78] Updated geyser for games --- index.toml | 2 +- pack.toml | 2 +- plugins/geyser.pw.toml | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/index.toml b/index.toml index 1a967b8..2efdb6e 100644 --- a/index.toml +++ b/index.toml @@ -25,7 +25,7 @@ metafile = true [[files]] file = "plugins/geyser.pw.toml" -hash = "cc0a36dd060c7aaff62700fb23937dd36f70f2a5614bb8180b75d550446da322" +hash = "93ad699f17016834e18db6190ef55551525fdb2c670186213df82a45baf5d00d" metafile = true [[files]] diff --git a/pack.toml b/pack.toml index 44ea7e0..665326f 100644 --- a/pack.toml +++ b/pack.toml @@ -5,7 +5,7 @@ pack-format = "packwiz:1.1.0" [index] file = "index.toml" hash-format = "sha256" -hash = "84dca15375320dbe6d45af0dcccb63e9022983d6c105d1cc57962e4edee91d16" +hash = "feabccb8c73d3203f94b916a2d298b64dc6d13ced317850f933bbb1a0ecdc8c7" [versions] minecraft = "1.21.5" diff --git a/plugins/geyser.pw.toml b/plugins/geyser.pw.toml index 9cb14d0..16e5800 100644 --- a/plugins/geyser.pw.toml +++ b/plugins/geyser.pw.toml @@ -3,11 +3,11 @@ filename = "Geyser-Spigot.jar" side = "server" [download] -url = "https://cdn.modrinth.com/data/wKkoqHrH/versions/mc1Ogrh1/Geyser-Spigot.jar" +url = "https://cdn.modrinth.com/data/wKkoqHrH/versions/irO7D4Gs/Geyser-Spigot.jar" hash-format = "sha512" -hash = "8cab28fdb758ad7592a6091006f524e1622ff1e860442e660edacd3d92d810191073ede907de48bb0c94ac0427628cfe57208581452ef084353bf5c7226caf8e" +hash = "c3695d67775441dcc6c87c0901f16ef6429636869b52868fb1c33df426456193bb034f41484bedbc162808f087bc2278f8c1cabfa032cb88644794970aa2d370" [update] [update.modrinth] mod-id = "wKkoqHrH" -version = "mc1Ogrh1" +version = "irO7D4Gs" From 5026f5557df066185ef20adc21d8bc5af01e1c7d Mon Sep 17 00:00:00 2001 From: Skynet <> Date: Fri, 16 May 2025 00:01:30 +0000 Subject: [PATCH 34/78] Updated geyser for main --- index.toml | 2 +- pack.toml | 2 +- plugins/geyser.pw.toml | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/index.toml b/index.toml index f4cda0a..52d8f19 100644 --- a/index.toml +++ b/index.toml @@ -17,7 +17,7 @@ metafile = true [[files]] file = "plugins/geyser.pw.toml" -hash = "cc0a36dd060c7aaff62700fb23937dd36f70f2a5614bb8180b75d550446da322" +hash = "93ad699f17016834e18db6190ef55551525fdb2c670186213df82a45baf5d00d" metafile = true [[files]] diff --git a/pack.toml b/pack.toml index bbc1e50..52c28e3 100644 --- a/pack.toml +++ b/pack.toml @@ -5,7 +5,7 @@ pack-format = "packwiz:1.1.0" [index] file = "index.toml" hash-format = "sha256" -hash = "9acfdc214b58861dd753d0410ca6d2c6964ec8cdb50d06468cd5f561615f7ea7" +hash = "801ed9a5b62c846ab3401dc3b8de57d226c27185e065a5a9a75fbec704ef70cb" [versions] minecraft = "1.21.5" diff --git a/plugins/geyser.pw.toml b/plugins/geyser.pw.toml index 9cb14d0..16e5800 100644 --- a/plugins/geyser.pw.toml +++ b/plugins/geyser.pw.toml @@ -3,11 +3,11 @@ filename = "Geyser-Spigot.jar" side = "server" [download] -url = "https://cdn.modrinth.com/data/wKkoqHrH/versions/mc1Ogrh1/Geyser-Spigot.jar" +url = "https://cdn.modrinth.com/data/wKkoqHrH/versions/irO7D4Gs/Geyser-Spigot.jar" hash-format = "sha512" -hash = "8cab28fdb758ad7592a6091006f524e1622ff1e860442e660edacd3d92d810191073ede907de48bb0c94ac0427628cfe57208581452ef084353bf5c7226caf8e" +hash = "c3695d67775441dcc6c87c0901f16ef6429636869b52868fb1c33df426456193bb034f41484bedbc162808f087bc2278f8c1cabfa032cb88644794970aa2d370" [update] [update.modrinth] mod-id = "wKkoqHrH" -version = "mc1Ogrh1" +version = "irO7D4Gs" From 183b7fbe49fec1bef2720bc00e4e090e28f857e6 Mon Sep 17 00:00:00 2001 From: Skynet <> Date: Sat, 17 May 2025 00:01:16 +0000 Subject: [PATCH 35/78] Updated geyser for games --- index.toml | 2 +- pack.toml | 2 +- plugins/geyser.pw.toml | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/index.toml b/index.toml index 2efdb6e..f928063 100644 --- a/index.toml +++ b/index.toml @@ -25,7 +25,7 @@ metafile = true [[files]] file = "plugins/geyser.pw.toml" -hash = "93ad699f17016834e18db6190ef55551525fdb2c670186213df82a45baf5d00d" +hash = "aafdff5668728cc6c9967ba547fa4d6c31250aeb6189e49bf7318aaef8edff20" metafile = true [[files]] diff --git a/pack.toml b/pack.toml index 665326f..e903348 100644 --- a/pack.toml +++ b/pack.toml @@ -5,7 +5,7 @@ pack-format = "packwiz:1.1.0" [index] file = "index.toml" hash-format = "sha256" -hash = "feabccb8c73d3203f94b916a2d298b64dc6d13ced317850f933bbb1a0ecdc8c7" +hash = "2ecbfc69dccfce53d3ee325a5b1d2c59d0f8b3acd0c4bf5b7bda4741444d581c" [versions] minecraft = "1.21.5" diff --git a/plugins/geyser.pw.toml b/plugins/geyser.pw.toml index 16e5800..6585a48 100644 --- a/plugins/geyser.pw.toml +++ b/plugins/geyser.pw.toml @@ -3,11 +3,11 @@ filename = "Geyser-Spigot.jar" side = "server" [download] -url = "https://cdn.modrinth.com/data/wKkoqHrH/versions/irO7D4Gs/Geyser-Spigot.jar" +url = "https://cdn.modrinth.com/data/wKkoqHrH/versions/eiQ2IgY4/Geyser-Spigot.jar" hash-format = "sha512" -hash = "c3695d67775441dcc6c87c0901f16ef6429636869b52868fb1c33df426456193bb034f41484bedbc162808f087bc2278f8c1cabfa032cb88644794970aa2d370" +hash = "d0f6941bb19830074ef2ac7f195047f002e224bd19baacc186fd0067f5331d4ecaeda9d6eb8cea23ca494ecc579bf213043a03ba0d2ca3c2c11701c1b0cb894e" [update] [update.modrinth] mod-id = "wKkoqHrH" -version = "irO7D4Gs" +version = "eiQ2IgY4" From cdeee718eeb3ec2032a42113a805bd510aec5273 Mon Sep 17 00:00:00 2001 From: Skynet <> Date: Sat, 17 May 2025 00:01:30 +0000 Subject: [PATCH 36/78] Updated geyser for main --- index.toml | 2 +- pack.toml | 2 +- plugins/geyser.pw.toml | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/index.toml b/index.toml index 52d8f19..7caf59d 100644 --- a/index.toml +++ b/index.toml @@ -17,7 +17,7 @@ metafile = true [[files]] file = "plugins/geyser.pw.toml" -hash = "93ad699f17016834e18db6190ef55551525fdb2c670186213df82a45baf5d00d" +hash = "aafdff5668728cc6c9967ba547fa4d6c31250aeb6189e49bf7318aaef8edff20" metafile = true [[files]] diff --git a/pack.toml b/pack.toml index 52c28e3..b022da5 100644 --- a/pack.toml +++ b/pack.toml @@ -5,7 +5,7 @@ pack-format = "packwiz:1.1.0" [index] file = "index.toml" hash-format = "sha256" -hash = "801ed9a5b62c846ab3401dc3b8de57d226c27185e065a5a9a75fbec704ef70cb" +hash = "da6f8b326ae924f1e4b56c6589e524c6030dc2064bc9b4bd94b6ef064f064921" [versions] minecraft = "1.21.5" diff --git a/plugins/geyser.pw.toml b/plugins/geyser.pw.toml index 16e5800..6585a48 100644 --- a/plugins/geyser.pw.toml +++ b/plugins/geyser.pw.toml @@ -3,11 +3,11 @@ filename = "Geyser-Spigot.jar" side = "server" [download] -url = "https://cdn.modrinth.com/data/wKkoqHrH/versions/irO7D4Gs/Geyser-Spigot.jar" +url = "https://cdn.modrinth.com/data/wKkoqHrH/versions/eiQ2IgY4/Geyser-Spigot.jar" hash-format = "sha512" -hash = "c3695d67775441dcc6c87c0901f16ef6429636869b52868fb1c33df426456193bb034f41484bedbc162808f087bc2278f8c1cabfa032cb88644794970aa2d370" +hash = "d0f6941bb19830074ef2ac7f195047f002e224bd19baacc186fd0067f5331d4ecaeda9d6eb8cea23ca494ecc579bf213043a03ba0d2ca3c2c11701c1b0cb894e" [update] [update.modrinth] mod-id = "wKkoqHrH" -version = "irO7D4Gs" +version = "eiQ2IgY4" From 245b666d2763bc34ce333d7ca4bea1c4a4d68163 Mon Sep 17 00:00:00 2001 From: Skynet <> Date: Mon, 19 May 2025 00:01:55 +0000 Subject: [PATCH 37/78] Updated geyser for games --- index.toml | 2 +- pack.toml | 2 +- plugins/geyser.pw.toml | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/index.toml b/index.toml index f928063..9005e63 100644 --- a/index.toml +++ b/index.toml @@ -25,7 +25,7 @@ metafile = true [[files]] file = "plugins/geyser.pw.toml" -hash = "aafdff5668728cc6c9967ba547fa4d6c31250aeb6189e49bf7318aaef8edff20" +hash = "3435fafb7c52e5b23a87ab984d2195bf5e4e0d8ed0a96c842119e7587a267f77" metafile = true [[files]] diff --git a/pack.toml b/pack.toml index e903348..ec44b30 100644 --- a/pack.toml +++ b/pack.toml @@ -5,7 +5,7 @@ pack-format = "packwiz:1.1.0" [index] file = "index.toml" hash-format = "sha256" -hash = "2ecbfc69dccfce53d3ee325a5b1d2c59d0f8b3acd0c4bf5b7bda4741444d581c" +hash = "417d107adb9af6e3e6e9b4e5ec42116c25250baf235949533cf3b4d6f87d9f5a" [versions] minecraft = "1.21.5" diff --git a/plugins/geyser.pw.toml b/plugins/geyser.pw.toml index 6585a48..f37ede9 100644 --- a/plugins/geyser.pw.toml +++ b/plugins/geyser.pw.toml @@ -3,11 +3,11 @@ filename = "Geyser-Spigot.jar" side = "server" [download] -url = "https://cdn.modrinth.com/data/wKkoqHrH/versions/eiQ2IgY4/Geyser-Spigot.jar" +url = "https://cdn.modrinth.com/data/wKkoqHrH/versions/erM3N5E3/Geyser-Spigot.jar" hash-format = "sha512" -hash = "d0f6941bb19830074ef2ac7f195047f002e224bd19baacc186fd0067f5331d4ecaeda9d6eb8cea23ca494ecc579bf213043a03ba0d2ca3c2c11701c1b0cb894e" +hash = "3dc2152051b88b3467a3269876866e4784353a60c9a4f7e956e1d224a3feaf55c45b691ea6b2dd661bd2341a175eb139f20c8253a4181da1d32138732d0d1563" [update] [update.modrinth] mod-id = "wKkoqHrH" -version = "eiQ2IgY4" +version = "erM3N5E3" From d8a46c37d7fe115895168010ece1be5dfedf974c Mon Sep 17 00:00:00 2001 From: Skynet <> Date: Mon, 19 May 2025 00:03:33 +0000 Subject: [PATCH 38/78] Updated geyser for main --- index.toml | 2 +- pack.toml | 2 +- plugins/geyser.pw.toml | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/index.toml b/index.toml index 7caf59d..c4d77b4 100644 --- a/index.toml +++ b/index.toml @@ -17,7 +17,7 @@ metafile = true [[files]] file = "plugins/geyser.pw.toml" -hash = "aafdff5668728cc6c9967ba547fa4d6c31250aeb6189e49bf7318aaef8edff20" +hash = "3435fafb7c52e5b23a87ab984d2195bf5e4e0d8ed0a96c842119e7587a267f77" metafile = true [[files]] diff --git a/pack.toml b/pack.toml index b022da5..96089d2 100644 --- a/pack.toml +++ b/pack.toml @@ -5,7 +5,7 @@ pack-format = "packwiz:1.1.0" [index] file = "index.toml" hash-format = "sha256" -hash = "da6f8b326ae924f1e4b56c6589e524c6030dc2064bc9b4bd94b6ef064f064921" +hash = "aeb8b0fd23bee47a88530be8fdb34ac32064f163749f1b47cee5bdc8f61aa404" [versions] minecraft = "1.21.5" diff --git a/plugins/geyser.pw.toml b/plugins/geyser.pw.toml index 6585a48..f37ede9 100644 --- a/plugins/geyser.pw.toml +++ b/plugins/geyser.pw.toml @@ -3,11 +3,11 @@ filename = "Geyser-Spigot.jar" side = "server" [download] -url = "https://cdn.modrinth.com/data/wKkoqHrH/versions/eiQ2IgY4/Geyser-Spigot.jar" +url = "https://cdn.modrinth.com/data/wKkoqHrH/versions/erM3N5E3/Geyser-Spigot.jar" hash-format = "sha512" -hash = "d0f6941bb19830074ef2ac7f195047f002e224bd19baacc186fd0067f5331d4ecaeda9d6eb8cea23ca494ecc579bf213043a03ba0d2ca3c2c11701c1b0cb894e" +hash = "3dc2152051b88b3467a3269876866e4784353a60c9a4f7e956e1d224a3feaf55c45b691ea6b2dd661bd2341a175eb139f20c8253a4181da1d32138732d0d1563" [update] [update.modrinth] mod-id = "wKkoqHrH" -version = "eiQ2IgY4" +version = "erM3N5E3" From c07a8d54b2c8aca0fafce6d08059c39922eec39b Mon Sep 17 00:00:00 2001 From: Skynet <> Date: Mon, 26 May 2025 00:01:43 +0000 Subject: [PATCH 39/78] Updated geyser for games --- index.toml | 2 +- pack.toml | 2 +- plugins/geyser.pw.toml | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/index.toml b/index.toml index 9005e63..fae9931 100644 --- a/index.toml +++ b/index.toml @@ -25,7 +25,7 @@ metafile = true [[files]] file = "plugins/geyser.pw.toml" -hash = "3435fafb7c52e5b23a87ab984d2195bf5e4e0d8ed0a96c842119e7587a267f77" +hash = "5f620a51b41f15a2d55aace98a9262b2f7d0ac088251c2a9200bf91e35af3662" metafile = true [[files]] diff --git a/pack.toml b/pack.toml index ec44b30..498c1e5 100644 --- a/pack.toml +++ b/pack.toml @@ -5,7 +5,7 @@ pack-format = "packwiz:1.1.0" [index] file = "index.toml" hash-format = "sha256" -hash = "417d107adb9af6e3e6e9b4e5ec42116c25250baf235949533cf3b4d6f87d9f5a" +hash = "117e87da58f32d7ac86da6e5f92e7c2a13ff80380ba7d8a885ad70aea4fd99ff" [versions] minecraft = "1.21.5" diff --git a/plugins/geyser.pw.toml b/plugins/geyser.pw.toml index f37ede9..7bcb239 100644 --- a/plugins/geyser.pw.toml +++ b/plugins/geyser.pw.toml @@ -3,11 +3,11 @@ filename = "Geyser-Spigot.jar" side = "server" [download] -url = "https://cdn.modrinth.com/data/wKkoqHrH/versions/erM3N5E3/Geyser-Spigot.jar" +url = "https://cdn.modrinth.com/data/wKkoqHrH/versions/JaKQ3Gx0/Geyser-Spigot.jar" hash-format = "sha512" -hash = "3dc2152051b88b3467a3269876866e4784353a60c9a4f7e956e1d224a3feaf55c45b691ea6b2dd661bd2341a175eb139f20c8253a4181da1d32138732d0d1563" +hash = "a5a56dbbf1a61fc51529967fd83373a968b73762b66412928cb5a130b757991dcb5a3cb5ee903eee4c7b233114aefce1b432de4008b826b117f9ceafef696275" [update] [update.modrinth] mod-id = "wKkoqHrH" -version = "erM3N5E3" +version = "JaKQ3Gx0" From 6d370db912612e0f258a2a65f5113eea7e491bc0 Mon Sep 17 00:00:00 2001 From: Skynet <> Date: Mon, 26 May 2025 00:01:59 +0000 Subject: [PATCH 40/78] Updated geyser for main --- index.toml | 2 +- pack.toml | 2 +- plugins/geyser.pw.toml | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/index.toml b/index.toml index c4d77b4..ac1a686 100644 --- a/index.toml +++ b/index.toml @@ -17,7 +17,7 @@ metafile = true [[files]] file = "plugins/geyser.pw.toml" -hash = "3435fafb7c52e5b23a87ab984d2195bf5e4e0d8ed0a96c842119e7587a267f77" +hash = "5f620a51b41f15a2d55aace98a9262b2f7d0ac088251c2a9200bf91e35af3662" metafile = true [[files]] diff --git a/pack.toml b/pack.toml index 96089d2..679bd1b 100644 --- a/pack.toml +++ b/pack.toml @@ -5,7 +5,7 @@ pack-format = "packwiz:1.1.0" [index] file = "index.toml" hash-format = "sha256" -hash = "aeb8b0fd23bee47a88530be8fdb34ac32064f163749f1b47cee5bdc8f61aa404" +hash = "57efb0f1756af8828fc60565f120324bf336a8c135db4ae5c404958b2aab40e7" [versions] minecraft = "1.21.5" diff --git a/plugins/geyser.pw.toml b/plugins/geyser.pw.toml index f37ede9..7bcb239 100644 --- a/plugins/geyser.pw.toml +++ b/plugins/geyser.pw.toml @@ -3,11 +3,11 @@ filename = "Geyser-Spigot.jar" side = "server" [download] -url = "https://cdn.modrinth.com/data/wKkoqHrH/versions/erM3N5E3/Geyser-Spigot.jar" +url = "https://cdn.modrinth.com/data/wKkoqHrH/versions/JaKQ3Gx0/Geyser-Spigot.jar" hash-format = "sha512" -hash = "3dc2152051b88b3467a3269876866e4784353a60c9a4f7e956e1d224a3feaf55c45b691ea6b2dd661bd2341a175eb139f20c8253a4181da1d32138732d0d1563" +hash = "a5a56dbbf1a61fc51529967fd83373a968b73762b66412928cb5a130b757991dcb5a3cb5ee903eee4c7b233114aefce1b432de4008b826b117f9ceafef696275" [update] [update.modrinth] mod-id = "wKkoqHrH" -version = "erM3N5E3" +version = "JaKQ3Gx0" From 931626def01be4611e79f3f50be87bb72337348f Mon Sep 17 00:00:00 2001 From: Skynet <> Date: Thu, 29 May 2025 00:02:59 +0000 Subject: [PATCH 41/78] Updated geyser for games --- index.toml | 2 +- pack.toml | 2 +- plugins/geyser.pw.toml | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/index.toml b/index.toml index fae9931..d131468 100644 --- a/index.toml +++ b/index.toml @@ -25,7 +25,7 @@ metafile = true [[files]] file = "plugins/geyser.pw.toml" -hash = "5f620a51b41f15a2d55aace98a9262b2f7d0ac088251c2a9200bf91e35af3662" +hash = "ade6ceec0257409894f01134b643433b8f78ff2de2f80e77d63b5ef888e171e8" metafile = true [[files]] diff --git a/pack.toml b/pack.toml index 498c1e5..8c1590c 100644 --- a/pack.toml +++ b/pack.toml @@ -5,7 +5,7 @@ pack-format = "packwiz:1.1.0" [index] file = "index.toml" hash-format = "sha256" -hash = "117e87da58f32d7ac86da6e5f92e7c2a13ff80380ba7d8a885ad70aea4fd99ff" +hash = "ad11837ac24ed5c80e552034191fc6736ee0744f53fcab8d68165004ed0a894f" [versions] minecraft = "1.21.5" diff --git a/plugins/geyser.pw.toml b/plugins/geyser.pw.toml index 7bcb239..7ba736c 100644 --- a/plugins/geyser.pw.toml +++ b/plugins/geyser.pw.toml @@ -3,11 +3,11 @@ filename = "Geyser-Spigot.jar" side = "server" [download] -url = "https://cdn.modrinth.com/data/wKkoqHrH/versions/JaKQ3Gx0/Geyser-Spigot.jar" +url = "https://cdn.modrinth.com/data/wKkoqHrH/versions/ftMzNrv7/Geyser-Spigot.jar" hash-format = "sha512" -hash = "a5a56dbbf1a61fc51529967fd83373a968b73762b66412928cb5a130b757991dcb5a3cb5ee903eee4c7b233114aefce1b432de4008b826b117f9ceafef696275" +hash = "1f6f14995cec590429977555c898f5dc0b97140aa4e535a318dece94c8794d54f7407b9b66b20bd709bed0eaeaf6fa262605ff5502e7846926a4211bf19465b6" [update] [update.modrinth] mod-id = "wKkoqHrH" -version = "JaKQ3Gx0" +version = "ftMzNrv7" From 0f53a996fd3fb6cc63a784b93802f2eda1fb26e0 Mon Sep 17 00:00:00 2001 From: Skynet <> Date: Thu, 29 May 2025 00:03:15 +0000 Subject: [PATCH 42/78] Updated geyser for main --- index.toml | 2 +- pack.toml | 2 +- plugins/geyser.pw.toml | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/index.toml b/index.toml index ac1a686..665d8a4 100644 --- a/index.toml +++ b/index.toml @@ -17,7 +17,7 @@ metafile = true [[files]] file = "plugins/geyser.pw.toml" -hash = "5f620a51b41f15a2d55aace98a9262b2f7d0ac088251c2a9200bf91e35af3662" +hash = "ade6ceec0257409894f01134b643433b8f78ff2de2f80e77d63b5ef888e171e8" metafile = true [[files]] diff --git a/pack.toml b/pack.toml index 679bd1b..4160fbb 100644 --- a/pack.toml +++ b/pack.toml @@ -5,7 +5,7 @@ pack-format = "packwiz:1.1.0" [index] file = "index.toml" hash-format = "sha256" -hash = "57efb0f1756af8828fc60565f120324bf336a8c135db4ae5c404958b2aab40e7" +hash = "318009a83c9273104a03fd9ac611d88bd76b52d4587787a4c94d9c9b651cc9d8" [versions] minecraft = "1.21.5" diff --git a/plugins/geyser.pw.toml b/plugins/geyser.pw.toml index 7bcb239..7ba736c 100644 --- a/plugins/geyser.pw.toml +++ b/plugins/geyser.pw.toml @@ -3,11 +3,11 @@ filename = "Geyser-Spigot.jar" side = "server" [download] -url = "https://cdn.modrinth.com/data/wKkoqHrH/versions/JaKQ3Gx0/Geyser-Spigot.jar" +url = "https://cdn.modrinth.com/data/wKkoqHrH/versions/ftMzNrv7/Geyser-Spigot.jar" hash-format = "sha512" -hash = "a5a56dbbf1a61fc51529967fd83373a968b73762b66412928cb5a130b757991dcb5a3cb5ee903eee4c7b233114aefce1b432de4008b826b117f9ceafef696275" +hash = "1f6f14995cec590429977555c898f5dc0b97140aa4e535a318dece94c8794d54f7407b9b66b20bd709bed0eaeaf6fa262605ff5502e7846926a4211bf19465b6" [update] [update.modrinth] mod-id = "wKkoqHrH" -version = "JaKQ3Gx0" +version = "ftMzNrv7" From d91513420d47a905aedec75fab0426b08c455579 Mon Sep 17 00:00:00 2001 From: Skynet <> Date: Wed, 11 Jun 2025 00:03:08 +0000 Subject: [PATCH 43/78] Updated geyser for games --- index.toml | 2 +- pack.toml | 2 +- plugins/geyser.pw.toml | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/index.toml b/index.toml index d131468..8ade662 100644 --- a/index.toml +++ b/index.toml @@ -25,7 +25,7 @@ metafile = true [[files]] file = "plugins/geyser.pw.toml" -hash = "ade6ceec0257409894f01134b643433b8f78ff2de2f80e77d63b5ef888e171e8" +hash = "2489262435dec2ad0f764cfa2977e0e18c39cc86d22102dcdabcb3ba9ea41fc6" metafile = true [[files]] diff --git a/pack.toml b/pack.toml index 8c1590c..a5e2828 100644 --- a/pack.toml +++ b/pack.toml @@ -5,7 +5,7 @@ pack-format = "packwiz:1.1.0" [index] file = "index.toml" hash-format = "sha256" -hash = "ad11837ac24ed5c80e552034191fc6736ee0744f53fcab8d68165004ed0a894f" +hash = "48fb49d5f64b2b212e45d4a190a3024a452b30b44129bf32fabddf0b76c24c53" [versions] minecraft = "1.21.5" diff --git a/plugins/geyser.pw.toml b/plugins/geyser.pw.toml index 7ba736c..d288427 100644 --- a/plugins/geyser.pw.toml +++ b/plugins/geyser.pw.toml @@ -3,11 +3,11 @@ filename = "Geyser-Spigot.jar" side = "server" [download] -url = "https://cdn.modrinth.com/data/wKkoqHrH/versions/ftMzNrv7/Geyser-Spigot.jar" +url = "https://cdn.modrinth.com/data/wKkoqHrH/versions/Rwlghjmd/Geyser-Spigot.jar" hash-format = "sha512" -hash = "1f6f14995cec590429977555c898f5dc0b97140aa4e535a318dece94c8794d54f7407b9b66b20bd709bed0eaeaf6fa262605ff5502e7846926a4211bf19465b6" +hash = "e7bd65424edc28a530d1a83158a54aae0214ac8c64e561e9f315d73b3f8942a2d85aac411d31442e4dc22b90d1e46f7c4274efc5a8fee1c60733b30f1cddf7a5" [update] [update.modrinth] mod-id = "wKkoqHrH" -version = "ftMzNrv7" +version = "Rwlghjmd" From 75ce74dc8f7690ac199d2715c2383b28eaabe730 Mon Sep 17 00:00:00 2001 From: Skynet <> Date: Wed, 11 Jun 2025 00:03:33 +0000 Subject: [PATCH 44/78] Updated geyser for main --- index.toml | 2 +- pack.toml | 2 +- plugins/geyser.pw.toml | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/index.toml b/index.toml index 665d8a4..dee4545 100644 --- a/index.toml +++ b/index.toml @@ -17,7 +17,7 @@ metafile = true [[files]] file = "plugins/geyser.pw.toml" -hash = "ade6ceec0257409894f01134b643433b8f78ff2de2f80e77d63b5ef888e171e8" +hash = "2489262435dec2ad0f764cfa2977e0e18c39cc86d22102dcdabcb3ba9ea41fc6" metafile = true [[files]] diff --git a/pack.toml b/pack.toml index 4160fbb..a8c7d80 100644 --- a/pack.toml +++ b/pack.toml @@ -5,7 +5,7 @@ pack-format = "packwiz:1.1.0" [index] file = "index.toml" hash-format = "sha256" -hash = "318009a83c9273104a03fd9ac611d88bd76b52d4587787a4c94d9c9b651cc9d8" +hash = "2f9e9285e8020ff38b5f9fa3f8b8d6aa4d4438f53002480d7221d94b854ffdd6" [versions] minecraft = "1.21.5" diff --git a/plugins/geyser.pw.toml b/plugins/geyser.pw.toml index 7ba736c..d288427 100644 --- a/plugins/geyser.pw.toml +++ b/plugins/geyser.pw.toml @@ -3,11 +3,11 @@ filename = "Geyser-Spigot.jar" side = "server" [download] -url = "https://cdn.modrinth.com/data/wKkoqHrH/versions/ftMzNrv7/Geyser-Spigot.jar" +url = "https://cdn.modrinth.com/data/wKkoqHrH/versions/Rwlghjmd/Geyser-Spigot.jar" hash-format = "sha512" -hash = "1f6f14995cec590429977555c898f5dc0b97140aa4e535a318dece94c8794d54f7407b9b66b20bd709bed0eaeaf6fa262605ff5502e7846926a4211bf19465b6" +hash = "e7bd65424edc28a530d1a83158a54aae0214ac8c64e561e9f315d73b3f8942a2d85aac411d31442e4dc22b90d1e46f7c4274efc5a8fee1c60733b30f1cddf7a5" [update] [update.modrinth] mod-id = "wKkoqHrH" -version = "ftMzNrv7" +version = "Rwlghjmd" From ffc7d7ea31f6316259f4b53bce8c6d4ed89d8bbe Mon Sep 17 00:00:00 2001 From: Skynet <> Date: Mon, 16 Jun 2025 15:55:01 +0000 Subject: [PATCH 45/78] Updated geyser for games --- index.toml | 2 +- pack.toml | 2 +- plugins/geyser.pw.toml | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/index.toml b/index.toml index 8ade662..d00666b 100644 --- a/index.toml +++ b/index.toml @@ -25,7 +25,7 @@ metafile = true [[files]] file = "plugins/geyser.pw.toml" -hash = "2489262435dec2ad0f764cfa2977e0e18c39cc86d22102dcdabcb3ba9ea41fc6" +hash = "6f856281aa0191a05c406c7433f902c32c8609b09ef6dfe9c9defeed1522b651" metafile = true [[files]] diff --git a/pack.toml b/pack.toml index a5e2828..a621572 100644 --- a/pack.toml +++ b/pack.toml @@ -5,7 +5,7 @@ pack-format = "packwiz:1.1.0" [index] file = "index.toml" hash-format = "sha256" -hash = "48fb49d5f64b2b212e45d4a190a3024a452b30b44129bf32fabddf0b76c24c53" +hash = "d737150540716161056b87f0f7ef0b1292f1a760d5afb85a223422bd67019b0c" [versions] minecraft = "1.21.5" diff --git a/plugins/geyser.pw.toml b/plugins/geyser.pw.toml index d288427..34f003e 100644 --- a/plugins/geyser.pw.toml +++ b/plugins/geyser.pw.toml @@ -3,11 +3,11 @@ filename = "Geyser-Spigot.jar" side = "server" [download] -url = "https://cdn.modrinth.com/data/wKkoqHrH/versions/Rwlghjmd/Geyser-Spigot.jar" +url = "https://cdn.modrinth.com/data/wKkoqHrH/versions/zkGY43yF/Geyser-Spigot.jar" hash-format = "sha512" -hash = "e7bd65424edc28a530d1a83158a54aae0214ac8c64e561e9f315d73b3f8942a2d85aac411d31442e4dc22b90d1e46f7c4274efc5a8fee1c60733b30f1cddf7a5" +hash = "3e343fcf8abe2d11c61a40ceb6f93c07e0f53be7f07ffb4df2642ab1db2666063e087e261278fbbb9c84068ea3fe2aedab86166c5e0c6f864122ddc79d9da425" [update] [update.modrinth] mod-id = "wKkoqHrH" -version = "Rwlghjmd" +version = "zkGY43yF" From 785e3f718929d316663468136013dd3353948de0 Mon Sep 17 00:00:00 2001 From: Skynet <> Date: Mon, 16 Jun 2025 15:55:15 +0000 Subject: [PATCH 46/78] Updated geyser for main --- index.toml | 2 +- pack.toml | 2 +- plugins/geyser.pw.toml | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/index.toml b/index.toml index dee4545..c2ed2f0 100644 --- a/index.toml +++ b/index.toml @@ -17,7 +17,7 @@ metafile = true [[files]] file = "plugins/geyser.pw.toml" -hash = "2489262435dec2ad0f764cfa2977e0e18c39cc86d22102dcdabcb3ba9ea41fc6" +hash = "6f856281aa0191a05c406c7433f902c32c8609b09ef6dfe9c9defeed1522b651" metafile = true [[files]] diff --git a/pack.toml b/pack.toml index a8c7d80..701189c 100644 --- a/pack.toml +++ b/pack.toml @@ -5,7 +5,7 @@ pack-format = "packwiz:1.1.0" [index] file = "index.toml" hash-format = "sha256" -hash = "2f9e9285e8020ff38b5f9fa3f8b8d6aa4d4438f53002480d7221d94b854ffdd6" +hash = "0e920a71ce36b8d9b961155683c13c4c15a64dc2a372e96cb3f785cfb01aa01b" [versions] minecraft = "1.21.5" diff --git a/plugins/geyser.pw.toml b/plugins/geyser.pw.toml index d288427..34f003e 100644 --- a/plugins/geyser.pw.toml +++ b/plugins/geyser.pw.toml @@ -3,11 +3,11 @@ filename = "Geyser-Spigot.jar" side = "server" [download] -url = "https://cdn.modrinth.com/data/wKkoqHrH/versions/Rwlghjmd/Geyser-Spigot.jar" +url = "https://cdn.modrinth.com/data/wKkoqHrH/versions/zkGY43yF/Geyser-Spigot.jar" hash-format = "sha512" -hash = "e7bd65424edc28a530d1a83158a54aae0214ac8c64e561e9f315d73b3f8942a2d85aac411d31442e4dc22b90d1e46f7c4274efc5a8fee1c60733b30f1cddf7a5" +hash = "3e343fcf8abe2d11c61a40ceb6f93c07e0f53be7f07ffb4df2642ab1db2666063e087e261278fbbb9c84068ea3fe2aedab86166c5e0c6f864122ddc79d9da425" [update] [update.modrinth] mod-id = "wKkoqHrH" -version = "Rwlghjmd" +version = "zkGY43yF" From 3299103050777980187eee2d98b351694928cbd7 Mon Sep 17 00:00:00 2001 From: silver Date: Tue, 5 Aug 2025 23:04:53 +0000 Subject: [PATCH 47/78] test: dig into why this isnt running --- .forgejo/workflows/geyser.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.forgejo/workflows/geyser.yml b/.forgejo/workflows/geyser.yml index 69d8f20..679e238 100644 --- a/.forgejo/workflows/geyser.yml +++ b/.forgejo/workflows/geyser.yml @@ -36,6 +36,8 @@ jobs: branches=() eval "$(git for-each-ref --shell --format='branches+=(%(refname))' refs/remotes/origin/)" for branch in "${branches[@]}"; do + # for debugging + echo "$branch" # need to convert "'refs/remotes/origin/main" to "main" branch_local=$(echo "$branch" | awk -F'[\\\\/]' ' { print $4 }') git switch $branch_local From 08bd6b5aa059bb8618f3aaf8e04a9db919d6cc98 Mon Sep 17 00:00:00 2001 From: silver Date: Tue, 5 Aug 2025 23:09:45 +0000 Subject: [PATCH 48/78] test: see if skipping the head "branch" works --- .forgejo/workflows/geyser.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.forgejo/workflows/geyser.yml b/.forgejo/workflows/geyser.yml index 679e238..ce6e66d 100644 --- a/.forgejo/workflows/geyser.yml +++ b/.forgejo/workflows/geyser.yml @@ -38,6 +38,10 @@ jobs: for branch in "${branches[@]}"; do # for debugging echo "$branch" + if [ "$branch" == "refs/remotes/origin/HEAD" ]; then + continue + fi + # need to convert "'refs/remotes/origin/main" to "main" branch_local=$(echo "$branch" | awk -F'[\\\\/]' ' { print $4 }') git switch $branch_local From 4a846610e10a261aff1506453355169ffe3d92bd Mon Sep 17 00:00:00 2001 From: Skynet <> Date: Tue, 5 Aug 2025 23:10:40 +0000 Subject: [PATCH 49/78] Updated geyser for games --- index.toml | 2 +- pack.toml | 2 +- plugins/geyser.pw.toml | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/index.toml b/index.toml index d00666b..f436412 100644 --- a/index.toml +++ b/index.toml @@ -25,7 +25,7 @@ metafile = true [[files]] file = "plugins/geyser.pw.toml" -hash = "6f856281aa0191a05c406c7433f902c32c8609b09ef6dfe9c9defeed1522b651" +hash = "94bc16d561f559b01c6cd8df329cef09b5986d318c14953ac56fecf8e6a47406" metafile = true [[files]] diff --git a/pack.toml b/pack.toml index a621572..252ed12 100644 --- a/pack.toml +++ b/pack.toml @@ -5,7 +5,7 @@ pack-format = "packwiz:1.1.0" [index] file = "index.toml" hash-format = "sha256" -hash = "d737150540716161056b87f0f7ef0b1292f1a760d5afb85a223422bd67019b0c" +hash = "496045c0346cdccfd0ffe0a1b67403f6a08a2af24b0f2ff530185578739215db" [versions] minecraft = "1.21.5" diff --git a/plugins/geyser.pw.toml b/plugins/geyser.pw.toml index 34f003e..307610c 100644 --- a/plugins/geyser.pw.toml +++ b/plugins/geyser.pw.toml @@ -3,11 +3,11 @@ filename = "Geyser-Spigot.jar" side = "server" [download] -url = "https://cdn.modrinth.com/data/wKkoqHrH/versions/zkGY43yF/Geyser-Spigot.jar" +url = "https://cdn.modrinth.com/data/wKkoqHrH/versions/v87Lsple/Geyser-Spigot.jar" hash-format = "sha512" -hash = "3e343fcf8abe2d11c61a40ceb6f93c07e0f53be7f07ffb4df2642ab1db2666063e087e261278fbbb9c84068ea3fe2aedab86166c5e0c6f864122ddc79d9da425" +hash = "cd6b983c92a875b89b95254a26cd14064de9b1b437497f9a5cc5a4da550daa2bc569aff778a52f4b41576da5b98c626507e5ea9725ce791bbec18276254fe6ec" [update] [update.modrinth] mod-id = "wKkoqHrH" -version = "zkGY43yF" +version = "v87Lsple" From 665c43c0a3b4cac4692d44531abe1b177b7b4827 Mon Sep 17 00:00:00 2001 From: Skynet <> Date: Tue, 5 Aug 2025 23:10:55 +0000 Subject: [PATCH 50/78] Updated geyser for main --- index.toml | 2 +- pack.toml | 2 +- plugins/geyser.pw.toml | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/index.toml b/index.toml index c2ed2f0..a85f0ac 100644 --- a/index.toml +++ b/index.toml @@ -17,7 +17,7 @@ metafile = true [[files]] file = "plugins/geyser.pw.toml" -hash = "6f856281aa0191a05c406c7433f902c32c8609b09ef6dfe9c9defeed1522b651" +hash = "94bc16d561f559b01c6cd8df329cef09b5986d318c14953ac56fecf8e6a47406" metafile = true [[files]] diff --git a/pack.toml b/pack.toml index 701189c..01d4c3e 100644 --- a/pack.toml +++ b/pack.toml @@ -5,7 +5,7 @@ pack-format = "packwiz:1.1.0" [index] file = "index.toml" hash-format = "sha256" -hash = "0e920a71ce36b8d9b961155683c13c4c15a64dc2a372e96cb3f785cfb01aa01b" +hash = "2a9311e1c3906134bc578ff6ce434412f8566cd940320adcc0e800cdd39cbb6d" [versions] minecraft = "1.21.5" diff --git a/plugins/geyser.pw.toml b/plugins/geyser.pw.toml index 34f003e..307610c 100644 --- a/plugins/geyser.pw.toml +++ b/plugins/geyser.pw.toml @@ -3,11 +3,11 @@ filename = "Geyser-Spigot.jar" side = "server" [download] -url = "https://cdn.modrinth.com/data/wKkoqHrH/versions/zkGY43yF/Geyser-Spigot.jar" +url = "https://cdn.modrinth.com/data/wKkoqHrH/versions/v87Lsple/Geyser-Spigot.jar" hash-format = "sha512" -hash = "3e343fcf8abe2d11c61a40ceb6f93c07e0f53be7f07ffb4df2642ab1db2666063e087e261278fbbb9c84068ea3fe2aedab86166c5e0c6f864122ddc79d9da425" +hash = "cd6b983c92a875b89b95254a26cd14064de9b1b437497f9a5cc5a4da550daa2bc569aff778a52f4b41576da5b98c626507e5ea9725ce791bbec18276254fe6ec" [update] [update.modrinth] mod-id = "wKkoqHrH" -version = "zkGY43yF" +version = "v87Lsple" From 54eb783d7f453afc2e644964c935134f868aa204 Mon Sep 17 00:00:00 2001 From: Skynet <> Date: Tue, 12 Aug 2025 14:49:47 +0000 Subject: [PATCH 51/78] Updated geyser for games --- index.toml | 2 +- pack.toml | 2 +- plugins/geyser.pw.toml | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/index.toml b/index.toml index f436412..3505a8b 100644 --- a/index.toml +++ b/index.toml @@ -25,7 +25,7 @@ metafile = true [[files]] file = "plugins/geyser.pw.toml" -hash = "94bc16d561f559b01c6cd8df329cef09b5986d318c14953ac56fecf8e6a47406" +hash = "c0532c670fc20b3bcae62758af6da6577b4f6d704727b9ec71bd64ff40c32193" metafile = true [[files]] diff --git a/pack.toml b/pack.toml index 252ed12..2ca8742 100644 --- a/pack.toml +++ b/pack.toml @@ -5,7 +5,7 @@ pack-format = "packwiz:1.1.0" [index] file = "index.toml" hash-format = "sha256" -hash = "496045c0346cdccfd0ffe0a1b67403f6a08a2af24b0f2ff530185578739215db" +hash = "5d20c3927c4d6301325e16b10cb149a2054cd1c1e9337daccc3b15268f47266f" [versions] minecraft = "1.21.5" diff --git a/plugins/geyser.pw.toml b/plugins/geyser.pw.toml index 307610c..6076dc6 100644 --- a/plugins/geyser.pw.toml +++ b/plugins/geyser.pw.toml @@ -3,11 +3,11 @@ filename = "Geyser-Spigot.jar" side = "server" [download] -url = "https://cdn.modrinth.com/data/wKkoqHrH/versions/v87Lsple/Geyser-Spigot.jar" +url = "https://cdn.modrinth.com/data/wKkoqHrH/versions/jnT7vgip/Geyser-Spigot.jar" hash-format = "sha512" -hash = "cd6b983c92a875b89b95254a26cd14064de9b1b437497f9a5cc5a4da550daa2bc569aff778a52f4b41576da5b98c626507e5ea9725ce791bbec18276254fe6ec" +hash = "3346d81757bb74591314c8427ff1fca0c88e9a89b7e6ede7b908f1c4c93eda35bcfcd30464edce3286c8401a682fa8820603644bbbb60b5da4a99883dad1d144" [update] [update.modrinth] mod-id = "wKkoqHrH" -version = "v87Lsple" +version = "jnT7vgip" From dbc46130440e19f64b00f0d6f7cedf1f02920dbe Mon Sep 17 00:00:00 2001 From: Skynet <> Date: Tue, 12 Aug 2025 14:50:01 +0000 Subject: [PATCH 52/78] Updated geyser for main --- index.toml | 2 +- pack.toml | 2 +- plugins/geyser.pw.toml | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/index.toml b/index.toml index a85f0ac..922fdc8 100644 --- a/index.toml +++ b/index.toml @@ -17,7 +17,7 @@ metafile = true [[files]] file = "plugins/geyser.pw.toml" -hash = "94bc16d561f559b01c6cd8df329cef09b5986d318c14953ac56fecf8e6a47406" +hash = "c0532c670fc20b3bcae62758af6da6577b4f6d704727b9ec71bd64ff40c32193" metafile = true [[files]] diff --git a/pack.toml b/pack.toml index 01d4c3e..02dabfa 100644 --- a/pack.toml +++ b/pack.toml @@ -5,7 +5,7 @@ pack-format = "packwiz:1.1.0" [index] file = "index.toml" hash-format = "sha256" -hash = "2a9311e1c3906134bc578ff6ce434412f8566cd940320adcc0e800cdd39cbb6d" +hash = "bbdeb57ad3a372193603b710f50fce2f27e097347cad36edf9d66a1fa5dae6b5" [versions] minecraft = "1.21.5" diff --git a/plugins/geyser.pw.toml b/plugins/geyser.pw.toml index 307610c..6076dc6 100644 --- a/plugins/geyser.pw.toml +++ b/plugins/geyser.pw.toml @@ -3,11 +3,11 @@ filename = "Geyser-Spigot.jar" side = "server" [download] -url = "https://cdn.modrinth.com/data/wKkoqHrH/versions/v87Lsple/Geyser-Spigot.jar" +url = "https://cdn.modrinth.com/data/wKkoqHrH/versions/jnT7vgip/Geyser-Spigot.jar" hash-format = "sha512" -hash = "cd6b983c92a875b89b95254a26cd14064de9b1b437497f9a5cc5a4da550daa2bc569aff778a52f4b41576da5b98c626507e5ea9725ce791bbec18276254fe6ec" +hash = "3346d81757bb74591314c8427ff1fca0c88e9a89b7e6ede7b908f1c4c93eda35bcfcd30464edce3286c8401a682fa8820603644bbbb60b5da4a99883dad1d144" [update] [update.modrinth] mod-id = "wKkoqHrH" -version = "v87Lsple" +version = "jnT7vgip" From 026d432804ddee1075890af1965fa0270eddcd85 Mon Sep 17 00:00:00 2001 From: Skynet <> Date: Fri, 15 Aug 2025 00:02:07 +0000 Subject: [PATCH 53/78] Updated geyser for games --- index.toml | 2 +- pack.toml | 2 +- plugins/geyser.pw.toml | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/index.toml b/index.toml index 3505a8b..49b6a24 100644 --- a/index.toml +++ b/index.toml @@ -25,7 +25,7 @@ metafile = true [[files]] file = "plugins/geyser.pw.toml" -hash = "c0532c670fc20b3bcae62758af6da6577b4f6d704727b9ec71bd64ff40c32193" +hash = "f5fc38026b143cb44bcddb74427ccb57bd2dd6570e8230488e23506025263749" metafile = true [[files]] diff --git a/pack.toml b/pack.toml index 2ca8742..8591139 100644 --- a/pack.toml +++ b/pack.toml @@ -5,7 +5,7 @@ pack-format = "packwiz:1.1.0" [index] file = "index.toml" hash-format = "sha256" -hash = "5d20c3927c4d6301325e16b10cb149a2054cd1c1e9337daccc3b15268f47266f" +hash = "66065d1ebbeebfbc2ca30ff6f70513cd867aab9c48c3ddaf7573bf7dd17c1619" [versions] minecraft = "1.21.5" diff --git a/plugins/geyser.pw.toml b/plugins/geyser.pw.toml index 6076dc6..a3739d0 100644 --- a/plugins/geyser.pw.toml +++ b/plugins/geyser.pw.toml @@ -3,11 +3,11 @@ filename = "Geyser-Spigot.jar" side = "server" [download] -url = "https://cdn.modrinth.com/data/wKkoqHrH/versions/jnT7vgip/Geyser-Spigot.jar" +url = "https://cdn.modrinth.com/data/wKkoqHrH/versions/le2wkcma/Geyser-Spigot.jar" hash-format = "sha512" -hash = "3346d81757bb74591314c8427ff1fca0c88e9a89b7e6ede7b908f1c4c93eda35bcfcd30464edce3286c8401a682fa8820603644bbbb60b5da4a99883dad1d144" +hash = "8bd7f7f5c75bd827e3240164624d2c7564ba93be0a36aaabcc692c630ef5e412fae69211f46220a0776612d6f53f2c8e42dc04e6d5c9148856319ffd3f59c507" [update] [update.modrinth] mod-id = "wKkoqHrH" -version = "jnT7vgip" +version = "le2wkcma" From 5059fcc4c52393d679360bee4f898d87a54325b2 Mon Sep 17 00:00:00 2001 From: Skynet <> Date: Fri, 15 Aug 2025 00:02:54 +0000 Subject: [PATCH 54/78] Updated geyser for main --- index.toml | 2 +- pack.toml | 2 +- plugins/geyser.pw.toml | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/index.toml b/index.toml index 922fdc8..9f59282 100644 --- a/index.toml +++ b/index.toml @@ -17,7 +17,7 @@ metafile = true [[files]] file = "plugins/geyser.pw.toml" -hash = "c0532c670fc20b3bcae62758af6da6577b4f6d704727b9ec71bd64ff40c32193" +hash = "f5fc38026b143cb44bcddb74427ccb57bd2dd6570e8230488e23506025263749" metafile = true [[files]] diff --git a/pack.toml b/pack.toml index 02dabfa..190d75b 100644 --- a/pack.toml +++ b/pack.toml @@ -5,7 +5,7 @@ pack-format = "packwiz:1.1.0" [index] file = "index.toml" hash-format = "sha256" -hash = "bbdeb57ad3a372193603b710f50fce2f27e097347cad36edf9d66a1fa5dae6b5" +hash = "4e4eb7af31247c91d5bb0e8a0af8a917868861a6c5ccf2e63a17c8668a5a2171" [versions] minecraft = "1.21.5" diff --git a/plugins/geyser.pw.toml b/plugins/geyser.pw.toml index 6076dc6..a3739d0 100644 --- a/plugins/geyser.pw.toml +++ b/plugins/geyser.pw.toml @@ -3,11 +3,11 @@ filename = "Geyser-Spigot.jar" side = "server" [download] -url = "https://cdn.modrinth.com/data/wKkoqHrH/versions/jnT7vgip/Geyser-Spigot.jar" +url = "https://cdn.modrinth.com/data/wKkoqHrH/versions/le2wkcma/Geyser-Spigot.jar" hash-format = "sha512" -hash = "3346d81757bb74591314c8427ff1fca0c88e9a89b7e6ede7b908f1c4c93eda35bcfcd30464edce3286c8401a682fa8820603644bbbb60b5da4a99883dad1d144" +hash = "8bd7f7f5c75bd827e3240164624d2c7564ba93be0a36aaabcc692c630ef5e412fae69211f46220a0776612d6f53f2c8e42dc04e6d5c9148856319ffd3f59c507" [update] [update.modrinth] mod-id = "wKkoqHrH" -version = "jnT7vgip" +version = "le2wkcma" From 67c302f19b40e9be44f5cc9e19f8d96c59ffc3cc Mon Sep 17 00:00:00 2001 From: Skynet <> Date: Thu, 21 Aug 2025 00:03:19 +0000 Subject: [PATCH 55/78] Updated geyser for games --- index.toml | 2 +- pack.toml | 2 +- plugins/geyser.pw.toml | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/index.toml b/index.toml index 49b6a24..8330470 100644 --- a/index.toml +++ b/index.toml @@ -25,7 +25,7 @@ metafile = true [[files]] file = "plugins/geyser.pw.toml" -hash = "f5fc38026b143cb44bcddb74427ccb57bd2dd6570e8230488e23506025263749" +hash = "42ff5c8ca6e8008bc670f02c074cbd0c68c022fafe45bad85b5e599688040261" metafile = true [[files]] diff --git a/pack.toml b/pack.toml index 8591139..3603600 100644 --- a/pack.toml +++ b/pack.toml @@ -5,7 +5,7 @@ pack-format = "packwiz:1.1.0" [index] file = "index.toml" hash-format = "sha256" -hash = "66065d1ebbeebfbc2ca30ff6f70513cd867aab9c48c3ddaf7573bf7dd17c1619" +hash = "1dc003d1c1813069c021830f3faa251fedcf7209f4812ac89921acc9de18416b" [versions] minecraft = "1.21.5" diff --git a/plugins/geyser.pw.toml b/plugins/geyser.pw.toml index a3739d0..641dd48 100644 --- a/plugins/geyser.pw.toml +++ b/plugins/geyser.pw.toml @@ -3,11 +3,11 @@ filename = "Geyser-Spigot.jar" side = "server" [download] -url = "https://cdn.modrinth.com/data/wKkoqHrH/versions/le2wkcma/Geyser-Spigot.jar" +url = "https://cdn.modrinth.com/data/wKkoqHrH/versions/6uIhhxut/Geyser-Spigot.jar" hash-format = "sha512" -hash = "8bd7f7f5c75bd827e3240164624d2c7564ba93be0a36aaabcc692c630ef5e412fae69211f46220a0776612d6f53f2c8e42dc04e6d5c9148856319ffd3f59c507" +hash = "34f7e389fd58aae80ec5522c6683ffd87f021f93bf9c3a94b0717aef261959daff58416373a59798252b9c64967393e6d04300ddc8b894c6ee5a916bfa19b69a" [update] [update.modrinth] mod-id = "wKkoqHrH" -version = "le2wkcma" +version = "6uIhhxut" From e19b46f92b4b0a101e974981136b5505a5f8e0ea Mon Sep 17 00:00:00 2001 From: Skynet <> Date: Thu, 21 Aug 2025 00:04:11 +0000 Subject: [PATCH 56/78] Updated geyser for main --- index.toml | 2 +- pack.toml | 2 +- plugins/geyser.pw.toml | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/index.toml b/index.toml index 9f59282..741497b 100644 --- a/index.toml +++ b/index.toml @@ -17,7 +17,7 @@ metafile = true [[files]] file = "plugins/geyser.pw.toml" -hash = "f5fc38026b143cb44bcddb74427ccb57bd2dd6570e8230488e23506025263749" +hash = "42ff5c8ca6e8008bc670f02c074cbd0c68c022fafe45bad85b5e599688040261" metafile = true [[files]] diff --git a/pack.toml b/pack.toml index 190d75b..e5a6535 100644 --- a/pack.toml +++ b/pack.toml @@ -5,7 +5,7 @@ pack-format = "packwiz:1.1.0" [index] file = "index.toml" hash-format = "sha256" -hash = "4e4eb7af31247c91d5bb0e8a0af8a917868861a6c5ccf2e63a17c8668a5a2171" +hash = "caef60e3965c4526fdd741f3ae6621e2a214d095dedf1a9e77b35747023c2f7a" [versions] minecraft = "1.21.5" diff --git a/plugins/geyser.pw.toml b/plugins/geyser.pw.toml index a3739d0..641dd48 100644 --- a/plugins/geyser.pw.toml +++ b/plugins/geyser.pw.toml @@ -3,11 +3,11 @@ filename = "Geyser-Spigot.jar" side = "server" [download] -url = "https://cdn.modrinth.com/data/wKkoqHrH/versions/le2wkcma/Geyser-Spigot.jar" +url = "https://cdn.modrinth.com/data/wKkoqHrH/versions/6uIhhxut/Geyser-Spigot.jar" hash-format = "sha512" -hash = "8bd7f7f5c75bd827e3240164624d2c7564ba93be0a36aaabcc692c630ef5e412fae69211f46220a0776612d6f53f2c8e42dc04e6d5c9148856319ffd3f59c507" +hash = "34f7e389fd58aae80ec5522c6683ffd87f021f93bf9c3a94b0717aef261959daff58416373a59798252b9c64967393e6d04300ddc8b894c6ee5a916bfa19b69a" [update] [update.modrinth] mod-id = "wKkoqHrH" -version = "le2wkcma" +version = "6uIhhxut" From 0ac7c4b8af8587137600760b3535f35d1ad95b97 Mon Sep 17 00:00:00 2001 From: Skynet <> Date: Sun, 24 Aug 2025 00:02:11 +0000 Subject: [PATCH 57/78] Updated geyser for games --- index.toml | 2 +- pack.toml | 2 +- plugins/geyser.pw.toml | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/index.toml b/index.toml index 8330470..d43cf57 100644 --- a/index.toml +++ b/index.toml @@ -25,7 +25,7 @@ metafile = true [[files]] file = "plugins/geyser.pw.toml" -hash = "42ff5c8ca6e8008bc670f02c074cbd0c68c022fafe45bad85b5e599688040261" +hash = "af8314053f22f28d740b7f5667ffdfa8f69ebb6918c1a439e1ff578bf89ad8a1" metafile = true [[files]] diff --git a/pack.toml b/pack.toml index 3603600..1bd3bfe 100644 --- a/pack.toml +++ b/pack.toml @@ -5,7 +5,7 @@ pack-format = "packwiz:1.1.0" [index] file = "index.toml" hash-format = "sha256" -hash = "1dc003d1c1813069c021830f3faa251fedcf7209f4812ac89921acc9de18416b" +hash = "a0023e166daeb6c00b65ebe01f5f69b5bf8b0fca6a9d8265c65e93a80c230981" [versions] minecraft = "1.21.5" diff --git a/plugins/geyser.pw.toml b/plugins/geyser.pw.toml index 641dd48..c2a48a2 100644 --- a/plugins/geyser.pw.toml +++ b/plugins/geyser.pw.toml @@ -3,11 +3,11 @@ filename = "Geyser-Spigot.jar" side = "server" [download] -url = "https://cdn.modrinth.com/data/wKkoqHrH/versions/6uIhhxut/Geyser-Spigot.jar" +url = "https://cdn.modrinth.com/data/wKkoqHrH/versions/2pDy6MPF/Geyser-Spigot.jar" hash-format = "sha512" -hash = "34f7e389fd58aae80ec5522c6683ffd87f021f93bf9c3a94b0717aef261959daff58416373a59798252b9c64967393e6d04300ddc8b894c6ee5a916bfa19b69a" +hash = "4ee190ecd86cc46e51f9a0d9a0d0b7a83a0cf74e05d83c7fa453da6478d3cc39f93eb8dbb5ebcf8218906fd1834bd14c1474201e0fdb6ff8859d81860a9f661a" [update] [update.modrinth] mod-id = "wKkoqHrH" -version = "6uIhhxut" +version = "2pDy6MPF" From f067c0ee01a25242c3851ef34e954f346adab65b Mon Sep 17 00:00:00 2001 From: Skynet <> Date: Sun, 24 Aug 2025 00:02:41 +0000 Subject: [PATCH 58/78] Updated geyser for main --- index.toml | 2 +- pack.toml | 2 +- plugins/geyser.pw.toml | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/index.toml b/index.toml index 741497b..a2011db 100644 --- a/index.toml +++ b/index.toml @@ -17,7 +17,7 @@ metafile = true [[files]] file = "plugins/geyser.pw.toml" -hash = "42ff5c8ca6e8008bc670f02c074cbd0c68c022fafe45bad85b5e599688040261" +hash = "af8314053f22f28d740b7f5667ffdfa8f69ebb6918c1a439e1ff578bf89ad8a1" metafile = true [[files]] diff --git a/pack.toml b/pack.toml index e5a6535..1ab0d61 100644 --- a/pack.toml +++ b/pack.toml @@ -5,7 +5,7 @@ pack-format = "packwiz:1.1.0" [index] file = "index.toml" hash-format = "sha256" -hash = "caef60e3965c4526fdd741f3ae6621e2a214d095dedf1a9e77b35747023c2f7a" +hash = "5ba18c7d160ede16e8725ee17c947cb17590e79487e05a75880195d7c8a5bcf1" [versions] minecraft = "1.21.5" diff --git a/plugins/geyser.pw.toml b/plugins/geyser.pw.toml index 641dd48..c2a48a2 100644 --- a/plugins/geyser.pw.toml +++ b/plugins/geyser.pw.toml @@ -3,11 +3,11 @@ filename = "Geyser-Spigot.jar" side = "server" [download] -url = "https://cdn.modrinth.com/data/wKkoqHrH/versions/6uIhhxut/Geyser-Spigot.jar" +url = "https://cdn.modrinth.com/data/wKkoqHrH/versions/2pDy6MPF/Geyser-Spigot.jar" hash-format = "sha512" -hash = "34f7e389fd58aae80ec5522c6683ffd87f021f93bf9c3a94b0717aef261959daff58416373a59798252b9c64967393e6d04300ddc8b894c6ee5a916bfa19b69a" +hash = "4ee190ecd86cc46e51f9a0d9a0d0b7a83a0cf74e05d83c7fa453da6478d3cc39f93eb8dbb5ebcf8218906fd1834bd14c1474201e0fdb6ff8859d81860a9f661a" [update] [update.modrinth] mod-id = "wKkoqHrH" -version = "6uIhhxut" +version = "2pDy6MPF" From 9b108d99162e56daa2984050e4bd9427b10155a7 Mon Sep 17 00:00:00 2001 From: Skynet <> Date: Thu, 4 Sep 2025 00:02:15 +0000 Subject: [PATCH 59/78] Updated geyser for games --- index.toml | 2 +- pack.toml | 2 +- plugins/geyser.pw.toml | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/index.toml b/index.toml index d43cf57..e260b02 100644 --- a/index.toml +++ b/index.toml @@ -25,7 +25,7 @@ metafile = true [[files]] file = "plugins/geyser.pw.toml" -hash = "af8314053f22f28d740b7f5667ffdfa8f69ebb6918c1a439e1ff578bf89ad8a1" +hash = "375dd56e2d8caeab97c22f440c5462e861e530e08ebc87642c89602ff7e5df47" metafile = true [[files]] diff --git a/pack.toml b/pack.toml index 1bd3bfe..d71430d 100644 --- a/pack.toml +++ b/pack.toml @@ -5,7 +5,7 @@ pack-format = "packwiz:1.1.0" [index] file = "index.toml" hash-format = "sha256" -hash = "a0023e166daeb6c00b65ebe01f5f69b5bf8b0fca6a9d8265c65e93a80c230981" +hash = "1a5680bee6cd8798eb6a6496df8c1f53fc512a7df8da8148d138c78eb9c22a7c" [versions] minecraft = "1.21.5" diff --git a/plugins/geyser.pw.toml b/plugins/geyser.pw.toml index c2a48a2..d210023 100644 --- a/plugins/geyser.pw.toml +++ b/plugins/geyser.pw.toml @@ -3,11 +3,11 @@ filename = "Geyser-Spigot.jar" side = "server" [download] -url = "https://cdn.modrinth.com/data/wKkoqHrH/versions/2pDy6MPF/Geyser-Spigot.jar" +url = "https://cdn.modrinth.com/data/wKkoqHrH/versions/e696WVsd/Geyser-Spigot.jar" hash-format = "sha512" -hash = "4ee190ecd86cc46e51f9a0d9a0d0b7a83a0cf74e05d83c7fa453da6478d3cc39f93eb8dbb5ebcf8218906fd1834bd14c1474201e0fdb6ff8859d81860a9f661a" +hash = "5397aad4916364617aeaa0d4f08a8bb0a9c39f471d70fbb514f8cc81fc576d431d8eabcd7ff4911964fc64592e3b9f395d934ffbfb1d2149baa6d2874d27154f" [update] [update.modrinth] mod-id = "wKkoqHrH" -version = "2pDy6MPF" +version = "e696WVsd" From 766eac8913acdecd638b3ea1c75f787ea0e3fee8 Mon Sep 17 00:00:00 2001 From: Skynet <> Date: Thu, 4 Sep 2025 00:02:44 +0000 Subject: [PATCH 60/78] Updated geyser for main --- index.toml | 2 +- pack.toml | 2 +- plugins/geyser.pw.toml | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/index.toml b/index.toml index a2011db..2a1e8ab 100644 --- a/index.toml +++ b/index.toml @@ -17,7 +17,7 @@ metafile = true [[files]] file = "plugins/geyser.pw.toml" -hash = "af8314053f22f28d740b7f5667ffdfa8f69ebb6918c1a439e1ff578bf89ad8a1" +hash = "375dd56e2d8caeab97c22f440c5462e861e530e08ebc87642c89602ff7e5df47" metafile = true [[files]] diff --git a/pack.toml b/pack.toml index 1ab0d61..b692345 100644 --- a/pack.toml +++ b/pack.toml @@ -5,7 +5,7 @@ pack-format = "packwiz:1.1.0" [index] file = "index.toml" hash-format = "sha256" -hash = "5ba18c7d160ede16e8725ee17c947cb17590e79487e05a75880195d7c8a5bcf1" +hash = "57430ae0b20eb6722c17c4f6ecfed90e90244be4109634229033f0497980822e" [versions] minecraft = "1.21.5" diff --git a/plugins/geyser.pw.toml b/plugins/geyser.pw.toml index c2a48a2..d210023 100644 --- a/plugins/geyser.pw.toml +++ b/plugins/geyser.pw.toml @@ -3,11 +3,11 @@ filename = "Geyser-Spigot.jar" side = "server" [download] -url = "https://cdn.modrinth.com/data/wKkoqHrH/versions/2pDy6MPF/Geyser-Spigot.jar" +url = "https://cdn.modrinth.com/data/wKkoqHrH/versions/e696WVsd/Geyser-Spigot.jar" hash-format = "sha512" -hash = "4ee190ecd86cc46e51f9a0d9a0d0b7a83a0cf74e05d83c7fa453da6478d3cc39f93eb8dbb5ebcf8218906fd1834bd14c1474201e0fdb6ff8859d81860a9f661a" +hash = "5397aad4916364617aeaa0d4f08a8bb0a9c39f471d70fbb514f8cc81fc576d431d8eabcd7ff4911964fc64592e3b9f395d934ffbfb1d2149baa6d2874d27154f" [update] [update.modrinth] mod-id = "wKkoqHrH" -version = "2pDy6MPF" +version = "e696WVsd" From 5743f7748b8566113e0ab57217dffb9e4a243aca Mon Sep 17 00:00:00 2001 From: Skynet <> Date: Fri, 5 Sep 2025 00:00:49 +0000 Subject: [PATCH 61/78] Updated geyser for games --- index.toml | 2 +- pack.toml | 2 +- plugins/geyser.pw.toml | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/index.toml b/index.toml index e260b02..e5013a5 100644 --- a/index.toml +++ b/index.toml @@ -25,7 +25,7 @@ metafile = true [[files]] file = "plugins/geyser.pw.toml" -hash = "375dd56e2d8caeab97c22f440c5462e861e530e08ebc87642c89602ff7e5df47" +hash = "cdea54e23beef0d4a99bd687ef3a66f25bde2a0c0bd25dc43aa7ee6c2db5851c" metafile = true [[files]] diff --git a/pack.toml b/pack.toml index d71430d..ae46d56 100644 --- a/pack.toml +++ b/pack.toml @@ -5,7 +5,7 @@ pack-format = "packwiz:1.1.0" [index] file = "index.toml" hash-format = "sha256" -hash = "1a5680bee6cd8798eb6a6496df8c1f53fc512a7df8da8148d138c78eb9c22a7c" +hash = "9094a9427a5a46f4ecafbf110109aa2c632e2d389f0ca062a3d633884b3dabaf" [versions] minecraft = "1.21.5" diff --git a/plugins/geyser.pw.toml b/plugins/geyser.pw.toml index d210023..de3ab2b 100644 --- a/plugins/geyser.pw.toml +++ b/plugins/geyser.pw.toml @@ -3,11 +3,11 @@ filename = "Geyser-Spigot.jar" side = "server" [download] -url = "https://cdn.modrinth.com/data/wKkoqHrH/versions/e696WVsd/Geyser-Spigot.jar" +url = "https://cdn.modrinth.com/data/wKkoqHrH/versions/Bt87qKeB/Geyser-Spigot.jar" hash-format = "sha512" -hash = "5397aad4916364617aeaa0d4f08a8bb0a9c39f471d70fbb514f8cc81fc576d431d8eabcd7ff4911964fc64592e3b9f395d934ffbfb1d2149baa6d2874d27154f" +hash = "41d074c2d1145e05fc8040d401812394cfde631962b97cb2be403b930cd07435ed0968c47188a1906f927db0b03f018ececd4fa4982f17b601f157db755163e5" [update] [update.modrinth] mod-id = "wKkoqHrH" -version = "e696WVsd" +version = "Bt87qKeB" From 5c8888dc224cb79b4acc3ea448bbddf0444957f8 Mon Sep 17 00:00:00 2001 From: Skynet <> Date: Fri, 5 Sep 2025 00:00:54 +0000 Subject: [PATCH 62/78] Updated geyser for main --- index.toml | 2 +- pack.toml | 2 +- plugins/geyser.pw.toml | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/index.toml b/index.toml index 2a1e8ab..b170a1d 100644 --- a/index.toml +++ b/index.toml @@ -17,7 +17,7 @@ metafile = true [[files]] file = "plugins/geyser.pw.toml" -hash = "375dd56e2d8caeab97c22f440c5462e861e530e08ebc87642c89602ff7e5df47" +hash = "cdea54e23beef0d4a99bd687ef3a66f25bde2a0c0bd25dc43aa7ee6c2db5851c" metafile = true [[files]] diff --git a/pack.toml b/pack.toml index b692345..2cd9f42 100644 --- a/pack.toml +++ b/pack.toml @@ -5,7 +5,7 @@ pack-format = "packwiz:1.1.0" [index] file = "index.toml" hash-format = "sha256" -hash = "57430ae0b20eb6722c17c4f6ecfed90e90244be4109634229033f0497980822e" +hash = "f4ee370e609d9d6010c6a92381c6871c06e30e1bec7316fbff6028a1abed28a7" [versions] minecraft = "1.21.5" diff --git a/plugins/geyser.pw.toml b/plugins/geyser.pw.toml index d210023..de3ab2b 100644 --- a/plugins/geyser.pw.toml +++ b/plugins/geyser.pw.toml @@ -3,11 +3,11 @@ filename = "Geyser-Spigot.jar" side = "server" [download] -url = "https://cdn.modrinth.com/data/wKkoqHrH/versions/e696WVsd/Geyser-Spigot.jar" +url = "https://cdn.modrinth.com/data/wKkoqHrH/versions/Bt87qKeB/Geyser-Spigot.jar" hash-format = "sha512" -hash = "5397aad4916364617aeaa0d4f08a8bb0a9c39f471d70fbb514f8cc81fc576d431d8eabcd7ff4911964fc64592e3b9f395d934ffbfb1d2149baa6d2874d27154f" +hash = "41d074c2d1145e05fc8040d401812394cfde631962b97cb2be403b930cd07435ed0968c47188a1906f927db0b03f018ececd4fa4982f17b601f157db755163e5" [update] [update.modrinth] mod-id = "wKkoqHrH" -version = "e696WVsd" +version = "Bt87qKeB" From f3c855015d6f92fd73a60e21162cb2e586469b28 Mon Sep 17 00:00:00 2001 From: Skynet <> Date: Thu, 11 Sep 2025 00:00:43 +0000 Subject: [PATCH 63/78] Updated geyser for games --- index.toml | 2 +- pack.toml | 2 +- plugins/geyser.pw.toml | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/index.toml b/index.toml index e5013a5..007cd07 100644 --- a/index.toml +++ b/index.toml @@ -25,7 +25,7 @@ metafile = true [[files]] file = "plugins/geyser.pw.toml" -hash = "cdea54e23beef0d4a99bd687ef3a66f25bde2a0c0bd25dc43aa7ee6c2db5851c" +hash = "fecf335db6e0e641e5aa671015ae3e934db18cb687bfa40db1629284fbb8bb71" metafile = true [[files]] diff --git a/pack.toml b/pack.toml index ae46d56..57f01b0 100644 --- a/pack.toml +++ b/pack.toml @@ -5,7 +5,7 @@ pack-format = "packwiz:1.1.0" [index] file = "index.toml" hash-format = "sha256" -hash = "9094a9427a5a46f4ecafbf110109aa2c632e2d389f0ca062a3d633884b3dabaf" +hash = "c897e01802168954c83a0ed3f13c707935105f823fc6f91b575f27e6e21b6bdd" [versions] minecraft = "1.21.5" diff --git a/plugins/geyser.pw.toml b/plugins/geyser.pw.toml index de3ab2b..de619ee 100644 --- a/plugins/geyser.pw.toml +++ b/plugins/geyser.pw.toml @@ -3,11 +3,11 @@ filename = "Geyser-Spigot.jar" side = "server" [download] -url = "https://cdn.modrinth.com/data/wKkoqHrH/versions/Bt87qKeB/Geyser-Spigot.jar" +url = "https://cdn.modrinth.com/data/wKkoqHrH/versions/K6w2fXgE/Geyser-Spigot.jar" hash-format = "sha512" -hash = "41d074c2d1145e05fc8040d401812394cfde631962b97cb2be403b930cd07435ed0968c47188a1906f927db0b03f018ececd4fa4982f17b601f157db755163e5" +hash = "6dfdbc149b2d97fa737896f02b5f6fee9d152475a257ed5c7f98e4d359d5724aa0b2cf01b25f3c05e4ed726bfd0ad8bde01aae19989f7da0ea87db84a1c88ab1" [update] [update.modrinth] mod-id = "wKkoqHrH" -version = "Bt87qKeB" +version = "K6w2fXgE" From 955b95c27cd31d7eedbbe9ab16596ee41404cc64 Mon Sep 17 00:00:00 2001 From: Skynet <> Date: Thu, 11 Sep 2025 00:00:47 +0000 Subject: [PATCH 64/78] Updated geyser for main --- index.toml | 2 +- pack.toml | 2 +- plugins/geyser.pw.toml | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/index.toml b/index.toml index b170a1d..287215a 100644 --- a/index.toml +++ b/index.toml @@ -17,7 +17,7 @@ metafile = true [[files]] file = "plugins/geyser.pw.toml" -hash = "cdea54e23beef0d4a99bd687ef3a66f25bde2a0c0bd25dc43aa7ee6c2db5851c" +hash = "fecf335db6e0e641e5aa671015ae3e934db18cb687bfa40db1629284fbb8bb71" metafile = true [[files]] diff --git a/pack.toml b/pack.toml index 2cd9f42..220a1a8 100644 --- a/pack.toml +++ b/pack.toml @@ -5,7 +5,7 @@ pack-format = "packwiz:1.1.0" [index] file = "index.toml" hash-format = "sha256" -hash = "f4ee370e609d9d6010c6a92381c6871c06e30e1bec7316fbff6028a1abed28a7" +hash = "86042f71ed3d6521d1fd565a8782b3216246bf34e66e48219a83e217d3fa3318" [versions] minecraft = "1.21.5" diff --git a/plugins/geyser.pw.toml b/plugins/geyser.pw.toml index de3ab2b..de619ee 100644 --- a/plugins/geyser.pw.toml +++ b/plugins/geyser.pw.toml @@ -3,11 +3,11 @@ filename = "Geyser-Spigot.jar" side = "server" [download] -url = "https://cdn.modrinth.com/data/wKkoqHrH/versions/Bt87qKeB/Geyser-Spigot.jar" +url = "https://cdn.modrinth.com/data/wKkoqHrH/versions/K6w2fXgE/Geyser-Spigot.jar" hash-format = "sha512" -hash = "41d074c2d1145e05fc8040d401812394cfde631962b97cb2be403b930cd07435ed0968c47188a1906f927db0b03f018ececd4fa4982f17b601f157db755163e5" +hash = "6dfdbc149b2d97fa737896f02b5f6fee9d152475a257ed5c7f98e4d359d5724aa0b2cf01b25f3c05e4ed726bfd0ad8bde01aae19989f7da0ea87db84a1c88ab1" [update] [update.modrinth] mod-id = "wKkoqHrH" -version = "Bt87qKeB" +version = "K6w2fXgE" From 89d2674a2fedb9b07fbc0a2bfb77649f9f07b458 Mon Sep 17 00:00:00 2001 From: Skynet <> Date: Fri, 12 Sep 2025 00:00:45 +0000 Subject: [PATCH 65/78] Updated geyser for games --- index.toml | 2 +- pack.toml | 2 +- plugins/geyser.pw.toml | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/index.toml b/index.toml index 007cd07..16b074b 100644 --- a/index.toml +++ b/index.toml @@ -25,7 +25,7 @@ metafile = true [[files]] file = "plugins/geyser.pw.toml" -hash = "fecf335db6e0e641e5aa671015ae3e934db18cb687bfa40db1629284fbb8bb71" +hash = "1b9687a14b300b0f8b06c6c3d8ecddc4fa22ebc02f47b9b84e889b3578ed91f9" metafile = true [[files]] diff --git a/pack.toml b/pack.toml index 57f01b0..b130824 100644 --- a/pack.toml +++ b/pack.toml @@ -5,7 +5,7 @@ pack-format = "packwiz:1.1.0" [index] file = "index.toml" hash-format = "sha256" -hash = "c897e01802168954c83a0ed3f13c707935105f823fc6f91b575f27e6e21b6bdd" +hash = "f9d0c265928f6fa01bd29059df914c4b3c227b7cb3ee16223d923f1de2e54ad9" [versions] minecraft = "1.21.5" diff --git a/plugins/geyser.pw.toml b/plugins/geyser.pw.toml index de619ee..ecc09cd 100644 --- a/plugins/geyser.pw.toml +++ b/plugins/geyser.pw.toml @@ -3,11 +3,11 @@ filename = "Geyser-Spigot.jar" side = "server" [download] -url = "https://cdn.modrinth.com/data/wKkoqHrH/versions/K6w2fXgE/Geyser-Spigot.jar" +url = "https://cdn.modrinth.com/data/wKkoqHrH/versions/lF6fFvyU/Geyser-Spigot.jar" hash-format = "sha512" -hash = "6dfdbc149b2d97fa737896f02b5f6fee9d152475a257ed5c7f98e4d359d5724aa0b2cf01b25f3c05e4ed726bfd0ad8bde01aae19989f7da0ea87db84a1c88ab1" +hash = "c1604835e4db5faab1e883925e7c307fdf95aa8e57316ce4c36d77a8d5d68fd51557492b454bf1d37d37fcd3974ecd38091f4ecee4ee7a61e9e8a768537f2448" [update] [update.modrinth] mod-id = "wKkoqHrH" -version = "K6w2fXgE" +version = "lF6fFvyU" From 40bd725b3c3b01a75253c28501672b585783d3dc Mon Sep 17 00:00:00 2001 From: Skynet <> Date: Fri, 12 Sep 2025 00:00:48 +0000 Subject: [PATCH 66/78] Updated geyser for main --- index.toml | 2 +- pack.toml | 2 +- plugins/geyser.pw.toml | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/index.toml b/index.toml index 287215a..c611840 100644 --- a/index.toml +++ b/index.toml @@ -17,7 +17,7 @@ metafile = true [[files]] file = "plugins/geyser.pw.toml" -hash = "fecf335db6e0e641e5aa671015ae3e934db18cb687bfa40db1629284fbb8bb71" +hash = "1b9687a14b300b0f8b06c6c3d8ecddc4fa22ebc02f47b9b84e889b3578ed91f9" metafile = true [[files]] diff --git a/pack.toml b/pack.toml index 220a1a8..2bc56d0 100644 --- a/pack.toml +++ b/pack.toml @@ -5,7 +5,7 @@ pack-format = "packwiz:1.1.0" [index] file = "index.toml" hash-format = "sha256" -hash = "86042f71ed3d6521d1fd565a8782b3216246bf34e66e48219a83e217d3fa3318" +hash = "808ef69f5c537aff48be752689a53038297de253a9659ff6dc3af9d65c89b016" [versions] minecraft = "1.21.5" diff --git a/plugins/geyser.pw.toml b/plugins/geyser.pw.toml index de619ee..ecc09cd 100644 --- a/plugins/geyser.pw.toml +++ b/plugins/geyser.pw.toml @@ -3,11 +3,11 @@ filename = "Geyser-Spigot.jar" side = "server" [download] -url = "https://cdn.modrinth.com/data/wKkoqHrH/versions/K6w2fXgE/Geyser-Spigot.jar" +url = "https://cdn.modrinth.com/data/wKkoqHrH/versions/lF6fFvyU/Geyser-Spigot.jar" hash-format = "sha512" -hash = "6dfdbc149b2d97fa737896f02b5f6fee9d152475a257ed5c7f98e4d359d5724aa0b2cf01b25f3c05e4ed726bfd0ad8bde01aae19989f7da0ea87db84a1c88ab1" +hash = "c1604835e4db5faab1e883925e7c307fdf95aa8e57316ce4c36d77a8d5d68fd51557492b454bf1d37d37fcd3974ecd38091f4ecee4ee7a61e9e8a768537f2448" [update] [update.modrinth] mod-id = "wKkoqHrH" -version = "K6w2fXgE" +version = "lF6fFvyU" From 9386b7df8249f6528daa9be83039da4bb1eb8766 Mon Sep 17 00:00:00 2001 From: Skynet <> Date: Sat, 13 Sep 2025 00:00:53 +0000 Subject: [PATCH 67/78] Updated geyser for games --- index.toml | 2 +- pack.toml | 2 +- plugins/geyser.pw.toml | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/index.toml b/index.toml index 16b074b..2ab5c5a 100644 --- a/index.toml +++ b/index.toml @@ -25,7 +25,7 @@ metafile = true [[files]] file = "plugins/geyser.pw.toml" -hash = "1b9687a14b300b0f8b06c6c3d8ecddc4fa22ebc02f47b9b84e889b3578ed91f9" +hash = "27d192f6af6f336b799ea12dbac970b5d3bfced6e75c707843b112085084c72a" metafile = true [[files]] diff --git a/pack.toml b/pack.toml index b130824..d792029 100644 --- a/pack.toml +++ b/pack.toml @@ -5,7 +5,7 @@ pack-format = "packwiz:1.1.0" [index] file = "index.toml" hash-format = "sha256" -hash = "f9d0c265928f6fa01bd29059df914c4b3c227b7cb3ee16223d923f1de2e54ad9" +hash = "648bd52a1db7a9d707e03c3f06f701d0ce173e013ceb62e715ea0d20a1042ab8" [versions] minecraft = "1.21.5" diff --git a/plugins/geyser.pw.toml b/plugins/geyser.pw.toml index ecc09cd..4713466 100644 --- a/plugins/geyser.pw.toml +++ b/plugins/geyser.pw.toml @@ -3,11 +3,11 @@ filename = "Geyser-Spigot.jar" side = "server" [download] -url = "https://cdn.modrinth.com/data/wKkoqHrH/versions/lF6fFvyU/Geyser-Spigot.jar" +url = "https://cdn.modrinth.com/data/wKkoqHrH/versions/rXfZDNgn/Geyser-Spigot.jar" hash-format = "sha512" -hash = "c1604835e4db5faab1e883925e7c307fdf95aa8e57316ce4c36d77a8d5d68fd51557492b454bf1d37d37fcd3974ecd38091f4ecee4ee7a61e9e8a768537f2448" +hash = "86929f9ecf83b9808aac283dba51507bd9d9b07815eee941ae623ec5a7b2f580e6f28b7ee1eaef478aaea05cacb710c53507fa91e7b2876b436072d73998ed07" [update] [update.modrinth] mod-id = "wKkoqHrH" -version = "lF6fFvyU" +version = "rXfZDNgn" From 9ad0b9820e4ac8e6c14e138293b604d77d025f3e Mon Sep 17 00:00:00 2001 From: Skynet <> Date: Sat, 13 Sep 2025 00:00:56 +0000 Subject: [PATCH 68/78] Updated geyser for main --- index.toml | 2 +- pack.toml | 2 +- plugins/geyser.pw.toml | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/index.toml b/index.toml index c611840..d6a144c 100644 --- a/index.toml +++ b/index.toml @@ -17,7 +17,7 @@ metafile = true [[files]] file = "plugins/geyser.pw.toml" -hash = "1b9687a14b300b0f8b06c6c3d8ecddc4fa22ebc02f47b9b84e889b3578ed91f9" +hash = "27d192f6af6f336b799ea12dbac970b5d3bfced6e75c707843b112085084c72a" metafile = true [[files]] diff --git a/pack.toml b/pack.toml index 2bc56d0..ab32454 100644 --- a/pack.toml +++ b/pack.toml @@ -5,7 +5,7 @@ pack-format = "packwiz:1.1.0" [index] file = "index.toml" hash-format = "sha256" -hash = "808ef69f5c537aff48be752689a53038297de253a9659ff6dc3af9d65c89b016" +hash = "d1ab528e5e4dfa66414abb3b9263860dc7e01f05305030862f18db73469ecdbc" [versions] minecraft = "1.21.5" diff --git a/plugins/geyser.pw.toml b/plugins/geyser.pw.toml index ecc09cd..4713466 100644 --- a/plugins/geyser.pw.toml +++ b/plugins/geyser.pw.toml @@ -3,11 +3,11 @@ filename = "Geyser-Spigot.jar" side = "server" [download] -url = "https://cdn.modrinth.com/data/wKkoqHrH/versions/lF6fFvyU/Geyser-Spigot.jar" +url = "https://cdn.modrinth.com/data/wKkoqHrH/versions/rXfZDNgn/Geyser-Spigot.jar" hash-format = "sha512" -hash = "c1604835e4db5faab1e883925e7c307fdf95aa8e57316ce4c36d77a8d5d68fd51557492b454bf1d37d37fcd3974ecd38091f4ecee4ee7a61e9e8a768537f2448" +hash = "86929f9ecf83b9808aac283dba51507bd9d9b07815eee941ae623ec5a7b2f580e6f28b7ee1eaef478aaea05cacb710c53507fa91e7b2876b436072d73998ed07" [update] [update.modrinth] mod-id = "wKkoqHrH" -version = "lF6fFvyU" +version = "rXfZDNgn" From 0d1d77a8009ebd3635e05079e2c7d8d912f8b6eb Mon Sep 17 00:00:00 2001 From: Skynet <> Date: Sun, 14 Sep 2025 00:00:57 +0000 Subject: [PATCH 69/78] Updated geyser for games --- index.toml | 2 +- pack.toml | 2 +- plugins/geyser.pw.toml | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/index.toml b/index.toml index 2ab5c5a..d2a24f2 100644 --- a/index.toml +++ b/index.toml @@ -25,7 +25,7 @@ metafile = true [[files]] file = "plugins/geyser.pw.toml" -hash = "27d192f6af6f336b799ea12dbac970b5d3bfced6e75c707843b112085084c72a" +hash = "1c99eadd8b95c07a4cd84ef58a3de655a10aa584bfe7d84971bd3da7542be8f4" metafile = true [[files]] diff --git a/pack.toml b/pack.toml index d792029..1b728db 100644 --- a/pack.toml +++ b/pack.toml @@ -5,7 +5,7 @@ pack-format = "packwiz:1.1.0" [index] file = "index.toml" hash-format = "sha256" -hash = "648bd52a1db7a9d707e03c3f06f701d0ce173e013ceb62e715ea0d20a1042ab8" +hash = "333dd1d095ea05dae5b9a7c8782ee688fdb7370d36c00411edfa261a5788e0d6" [versions] minecraft = "1.21.5" diff --git a/plugins/geyser.pw.toml b/plugins/geyser.pw.toml index 4713466..c6df176 100644 --- a/plugins/geyser.pw.toml +++ b/plugins/geyser.pw.toml @@ -3,11 +3,11 @@ filename = "Geyser-Spigot.jar" side = "server" [download] -url = "https://cdn.modrinth.com/data/wKkoqHrH/versions/rXfZDNgn/Geyser-Spigot.jar" +url = "https://cdn.modrinth.com/data/wKkoqHrH/versions/HPlW7BxK/Geyser-Spigot.jar" hash-format = "sha512" -hash = "86929f9ecf83b9808aac283dba51507bd9d9b07815eee941ae623ec5a7b2f580e6f28b7ee1eaef478aaea05cacb710c53507fa91e7b2876b436072d73998ed07" +hash = "e08d122b398873995d968be1df0fd446608325c456a60875c4dd20c03a4db93565d768b21b65bcfe4d81084a44c3bfc54b7ef976e9032a749d1e1e38bbb72a23" [update] [update.modrinth] mod-id = "wKkoqHrH" -version = "rXfZDNgn" +version = "HPlW7BxK" From 831b9ffda94a247821c3dc30ba3e8b1cb5b832af Mon Sep 17 00:00:00 2001 From: Skynet <> Date: Sun, 14 Sep 2025 00:01:01 +0000 Subject: [PATCH 70/78] Updated geyser for main --- index.toml | 2 +- pack.toml | 2 +- plugins/geyser.pw.toml | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/index.toml b/index.toml index d6a144c..46685b2 100644 --- a/index.toml +++ b/index.toml @@ -17,7 +17,7 @@ metafile = true [[files]] file = "plugins/geyser.pw.toml" -hash = "27d192f6af6f336b799ea12dbac970b5d3bfced6e75c707843b112085084c72a" +hash = "1c99eadd8b95c07a4cd84ef58a3de655a10aa584bfe7d84971bd3da7542be8f4" metafile = true [[files]] diff --git a/pack.toml b/pack.toml index ab32454..8cb7aa2 100644 --- a/pack.toml +++ b/pack.toml @@ -5,7 +5,7 @@ pack-format = "packwiz:1.1.0" [index] file = "index.toml" hash-format = "sha256" -hash = "d1ab528e5e4dfa66414abb3b9263860dc7e01f05305030862f18db73469ecdbc" +hash = "4e9b851507c805d6313b96e01e501e79f207a8c15820791141e750f8a9f6a5a3" [versions] minecraft = "1.21.5" diff --git a/plugins/geyser.pw.toml b/plugins/geyser.pw.toml index 4713466..c6df176 100644 --- a/plugins/geyser.pw.toml +++ b/plugins/geyser.pw.toml @@ -3,11 +3,11 @@ filename = "Geyser-Spigot.jar" side = "server" [download] -url = "https://cdn.modrinth.com/data/wKkoqHrH/versions/rXfZDNgn/Geyser-Spigot.jar" +url = "https://cdn.modrinth.com/data/wKkoqHrH/versions/HPlW7BxK/Geyser-Spigot.jar" hash-format = "sha512" -hash = "86929f9ecf83b9808aac283dba51507bd9d9b07815eee941ae623ec5a7b2f580e6f28b7ee1eaef478aaea05cacb710c53507fa91e7b2876b436072d73998ed07" +hash = "e08d122b398873995d968be1df0fd446608325c456a60875c4dd20c03a4db93565d768b21b65bcfe4d81084a44c3bfc54b7ef976e9032a749d1e1e38bbb72a23" [update] [update.modrinth] mod-id = "wKkoqHrH" -version = "rXfZDNgn" +version = "HPlW7BxK" From b75acd894db10505f9234a7eabbb86c8afa998c9 Mon Sep 17 00:00:00 2001 From: Skynet <> Date: Tue, 16 Sep 2025 00:01:09 +0000 Subject: [PATCH 71/78] Updated geyser for games --- index.toml | 2 +- pack.toml | 2 +- plugins/geyser.pw.toml | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/index.toml b/index.toml index d2a24f2..98baa34 100644 --- a/index.toml +++ b/index.toml @@ -25,7 +25,7 @@ metafile = true [[files]] file = "plugins/geyser.pw.toml" -hash = "1c99eadd8b95c07a4cd84ef58a3de655a10aa584bfe7d84971bd3da7542be8f4" +hash = "66961ff809b537359913fe88d768db595a650eb898e5e53a8a1430cf2abfed35" metafile = true [[files]] diff --git a/pack.toml b/pack.toml index 1b728db..1480480 100644 --- a/pack.toml +++ b/pack.toml @@ -5,7 +5,7 @@ pack-format = "packwiz:1.1.0" [index] file = "index.toml" hash-format = "sha256" -hash = "333dd1d095ea05dae5b9a7c8782ee688fdb7370d36c00411edfa261a5788e0d6" +hash = "65133ea781f266f72bb7967a9e4617b9e33325c462bb0af9bce822676786a208" [versions] minecraft = "1.21.5" diff --git a/plugins/geyser.pw.toml b/plugins/geyser.pw.toml index c6df176..a90685e 100644 --- a/plugins/geyser.pw.toml +++ b/plugins/geyser.pw.toml @@ -3,11 +3,11 @@ filename = "Geyser-Spigot.jar" side = "server" [download] -url = "https://cdn.modrinth.com/data/wKkoqHrH/versions/HPlW7BxK/Geyser-Spigot.jar" +url = "https://cdn.modrinth.com/data/wKkoqHrH/versions/Faac8bqc/Geyser-Spigot.jar" hash-format = "sha512" -hash = "e08d122b398873995d968be1df0fd446608325c456a60875c4dd20c03a4db93565d768b21b65bcfe4d81084a44c3bfc54b7ef976e9032a749d1e1e38bbb72a23" +hash = "abd2a6675c3d1c17fdb61c0a7f77503d4cf1381d6f0860e2c3bc76ef4af548ec16620c5ba3f133b4596d8942f8168f8489e3659f2d8befe5565483bf5c2214d3" [update] [update.modrinth] mod-id = "wKkoqHrH" -version = "HPlW7BxK" +version = "Faac8bqc" From 0a74e1f9a63346d0f4657387ce612e71b6147e69 Mon Sep 17 00:00:00 2001 From: Skynet <> Date: Tue, 16 Sep 2025 00:01:12 +0000 Subject: [PATCH 72/78] Updated geyser for main --- index.toml | 2 +- pack.toml | 2 +- plugins/geyser.pw.toml | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/index.toml b/index.toml index 46685b2..ffdf5c0 100644 --- a/index.toml +++ b/index.toml @@ -17,7 +17,7 @@ metafile = true [[files]] file = "plugins/geyser.pw.toml" -hash = "1c99eadd8b95c07a4cd84ef58a3de655a10aa584bfe7d84971bd3da7542be8f4" +hash = "66961ff809b537359913fe88d768db595a650eb898e5e53a8a1430cf2abfed35" metafile = true [[files]] diff --git a/pack.toml b/pack.toml index 8cb7aa2..db7dfcf 100644 --- a/pack.toml +++ b/pack.toml @@ -5,7 +5,7 @@ pack-format = "packwiz:1.1.0" [index] file = "index.toml" hash-format = "sha256" -hash = "4e9b851507c805d6313b96e01e501e79f207a8c15820791141e750f8a9f6a5a3" +hash = "6a99f0ed831cae3ad5fc70fa6c0b16efac73df1bccea30fa2e3de97b707d4896" [versions] minecraft = "1.21.5" diff --git a/plugins/geyser.pw.toml b/plugins/geyser.pw.toml index c6df176..a90685e 100644 --- a/plugins/geyser.pw.toml +++ b/plugins/geyser.pw.toml @@ -3,11 +3,11 @@ filename = "Geyser-Spigot.jar" side = "server" [download] -url = "https://cdn.modrinth.com/data/wKkoqHrH/versions/HPlW7BxK/Geyser-Spigot.jar" +url = "https://cdn.modrinth.com/data/wKkoqHrH/versions/Faac8bqc/Geyser-Spigot.jar" hash-format = "sha512" -hash = "e08d122b398873995d968be1df0fd446608325c456a60875c4dd20c03a4db93565d768b21b65bcfe4d81084a44c3bfc54b7ef976e9032a749d1e1e38bbb72a23" +hash = "abd2a6675c3d1c17fdb61c0a7f77503d4cf1381d6f0860e2c3bc76ef4af548ec16620c5ba3f133b4596d8942f8168f8489e3659f2d8befe5565483bf5c2214d3" [update] [update.modrinth] mod-id = "wKkoqHrH" -version = "HPlW7BxK" +version = "Faac8bqc" From 1acb59d915e8e9a8356bdf7b1b23178523d48f93 Mon Sep 17 00:00:00 2001 From: Skynet <> Date: Thu, 18 Sep 2025 00:00:49 +0000 Subject: [PATCH 73/78] Updated geyser for games --- index.toml | 2 +- pack.toml | 2 +- plugins/geyser.pw.toml | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/index.toml b/index.toml index 98baa34..0816ea2 100644 --- a/index.toml +++ b/index.toml @@ -25,7 +25,7 @@ metafile = true [[files]] file = "plugins/geyser.pw.toml" -hash = "66961ff809b537359913fe88d768db595a650eb898e5e53a8a1430cf2abfed35" +hash = "09c4804ee2a4f884eb9ff30e1fed00b39762196065e0cf97a06998d65c985507" metafile = true [[files]] diff --git a/pack.toml b/pack.toml index 1480480..37d54f7 100644 --- a/pack.toml +++ b/pack.toml @@ -5,7 +5,7 @@ pack-format = "packwiz:1.1.0" [index] file = "index.toml" hash-format = "sha256" -hash = "65133ea781f266f72bb7967a9e4617b9e33325c462bb0af9bce822676786a208" +hash = "df1ea8c39d755d5de02c6e2a45f024ac176eb3e129c3d6aca9f3ab3a678a9fbc" [versions] minecraft = "1.21.5" diff --git a/plugins/geyser.pw.toml b/plugins/geyser.pw.toml index a90685e..8df5c32 100644 --- a/plugins/geyser.pw.toml +++ b/plugins/geyser.pw.toml @@ -3,11 +3,11 @@ filename = "Geyser-Spigot.jar" side = "server" [download] -url = "https://cdn.modrinth.com/data/wKkoqHrH/versions/Faac8bqc/Geyser-Spigot.jar" +url = "https://cdn.modrinth.com/data/wKkoqHrH/versions/zVeReBHc/Geyser-Spigot.jar" hash-format = "sha512" -hash = "abd2a6675c3d1c17fdb61c0a7f77503d4cf1381d6f0860e2c3bc76ef4af548ec16620c5ba3f133b4596d8942f8168f8489e3659f2d8befe5565483bf5c2214d3" +hash = "58622ccbab2e378d3efa750399c475bc326454c8eeed0039b49a344dc7cb51cadcbef64f9ed3e46e568dbc88b151ace573405438eb5eac713280ee5c981974a9" [update] [update.modrinth] mod-id = "wKkoqHrH" -version = "Faac8bqc" +version = "zVeReBHc" From 36e7896f07d51d48fd7b9cdc9b2a07d00f39745f Mon Sep 17 00:00:00 2001 From: Skynet <> Date: Thu, 18 Sep 2025 00:00:56 +0000 Subject: [PATCH 74/78] Updated geyser for main --- index.toml | 2 +- pack.toml | 2 +- plugins/geyser.pw.toml | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/index.toml b/index.toml index ffdf5c0..8a93c47 100644 --- a/index.toml +++ b/index.toml @@ -17,7 +17,7 @@ metafile = true [[files]] file = "plugins/geyser.pw.toml" -hash = "66961ff809b537359913fe88d768db595a650eb898e5e53a8a1430cf2abfed35" +hash = "09c4804ee2a4f884eb9ff30e1fed00b39762196065e0cf97a06998d65c985507" metafile = true [[files]] diff --git a/pack.toml b/pack.toml index db7dfcf..8883bd8 100644 --- a/pack.toml +++ b/pack.toml @@ -5,7 +5,7 @@ pack-format = "packwiz:1.1.0" [index] file = "index.toml" hash-format = "sha256" -hash = "6a99f0ed831cae3ad5fc70fa6c0b16efac73df1bccea30fa2e3de97b707d4896" +hash = "dee43100b150c761a236e58217e04431a6aaa4a77656c52aab5f710a8df7e5dd" [versions] minecraft = "1.21.5" diff --git a/plugins/geyser.pw.toml b/plugins/geyser.pw.toml index a90685e..8df5c32 100644 --- a/plugins/geyser.pw.toml +++ b/plugins/geyser.pw.toml @@ -3,11 +3,11 @@ filename = "Geyser-Spigot.jar" side = "server" [download] -url = "https://cdn.modrinth.com/data/wKkoqHrH/versions/Faac8bqc/Geyser-Spigot.jar" +url = "https://cdn.modrinth.com/data/wKkoqHrH/versions/zVeReBHc/Geyser-Spigot.jar" hash-format = "sha512" -hash = "abd2a6675c3d1c17fdb61c0a7f77503d4cf1381d6f0860e2c3bc76ef4af548ec16620c5ba3f133b4596d8942f8168f8489e3659f2d8befe5565483bf5c2214d3" +hash = "58622ccbab2e378d3efa750399c475bc326454c8eeed0039b49a344dc7cb51cadcbef64f9ed3e46e568dbc88b151ace573405438eb5eac713280ee5c981974a9" [update] [update.modrinth] mod-id = "wKkoqHrH" -version = "Faac8bqc" +version = "zVeReBHc" From b9b30acfbb77c0f9b71c94851abf3c4b94b15df0 Mon Sep 17 00:00:00 2001 From: Skynet <> Date: Sat, 20 Sep 2025 00:00:45 +0000 Subject: [PATCH 75/78] Updated geyser for games --- index.toml | 2 +- pack.toml | 2 +- plugins/geyser.pw.toml | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/index.toml b/index.toml index 0816ea2..7ea0f30 100644 --- a/index.toml +++ b/index.toml @@ -25,7 +25,7 @@ metafile = true [[files]] file = "plugins/geyser.pw.toml" -hash = "09c4804ee2a4f884eb9ff30e1fed00b39762196065e0cf97a06998d65c985507" +hash = "1cd8f7d76722483f6947c6d074c2df69604fbacfe8e916d31ce0b96de73f6699" metafile = true [[files]] diff --git a/pack.toml b/pack.toml index 37d54f7..b1f83c4 100644 --- a/pack.toml +++ b/pack.toml @@ -5,7 +5,7 @@ pack-format = "packwiz:1.1.0" [index] file = "index.toml" hash-format = "sha256" -hash = "df1ea8c39d755d5de02c6e2a45f024ac176eb3e129c3d6aca9f3ab3a678a9fbc" +hash = "d658ef6d08f49579b40a7e3ad5e9ae18e781cd7f8fd9717b514d725ca691f2af" [versions] minecraft = "1.21.5" diff --git a/plugins/geyser.pw.toml b/plugins/geyser.pw.toml index 8df5c32..5c7da07 100644 --- a/plugins/geyser.pw.toml +++ b/plugins/geyser.pw.toml @@ -3,11 +3,11 @@ filename = "Geyser-Spigot.jar" side = "server" [download] -url = "https://cdn.modrinth.com/data/wKkoqHrH/versions/zVeReBHc/Geyser-Spigot.jar" +url = "https://cdn.modrinth.com/data/wKkoqHrH/versions/1iWpS0RA/Geyser-Spigot.jar" hash-format = "sha512" -hash = "58622ccbab2e378d3efa750399c475bc326454c8eeed0039b49a344dc7cb51cadcbef64f9ed3e46e568dbc88b151ace573405438eb5eac713280ee5c981974a9" +hash = "413d46bdfe387a441b8b22ec0af392f0cefee28dd051e9742d966df326d28dbb0cd14c951980a00c2ddca76939c77430594af3f9bea291ebb77aa737d453ee3b" [update] [update.modrinth] mod-id = "wKkoqHrH" -version = "zVeReBHc" +version = "1iWpS0RA" From 683eca836794a293d6332cf4ab7f24f08c7a1139 Mon Sep 17 00:00:00 2001 From: Skynet <> Date: Sat, 20 Sep 2025 00:00:48 +0000 Subject: [PATCH 76/78] Updated geyser for main --- index.toml | 2 +- pack.toml | 2 +- plugins/geyser.pw.toml | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/index.toml b/index.toml index 8a93c47..0c30d61 100644 --- a/index.toml +++ b/index.toml @@ -17,7 +17,7 @@ metafile = true [[files]] file = "plugins/geyser.pw.toml" -hash = "09c4804ee2a4f884eb9ff30e1fed00b39762196065e0cf97a06998d65c985507" +hash = "1cd8f7d76722483f6947c6d074c2df69604fbacfe8e916d31ce0b96de73f6699" metafile = true [[files]] diff --git a/pack.toml b/pack.toml index 8883bd8..0196426 100644 --- a/pack.toml +++ b/pack.toml @@ -5,7 +5,7 @@ pack-format = "packwiz:1.1.0" [index] file = "index.toml" hash-format = "sha256" -hash = "dee43100b150c761a236e58217e04431a6aaa4a77656c52aab5f710a8df7e5dd" +hash = "95c8d8372432b6fdd38c5c1cbd4aa7c095bfedff87f0ddcf5d014fc4b11329b7" [versions] minecraft = "1.21.5" diff --git a/plugins/geyser.pw.toml b/plugins/geyser.pw.toml index 8df5c32..5c7da07 100644 --- a/plugins/geyser.pw.toml +++ b/plugins/geyser.pw.toml @@ -3,11 +3,11 @@ filename = "Geyser-Spigot.jar" side = "server" [download] -url = "https://cdn.modrinth.com/data/wKkoqHrH/versions/zVeReBHc/Geyser-Spigot.jar" +url = "https://cdn.modrinth.com/data/wKkoqHrH/versions/1iWpS0RA/Geyser-Spigot.jar" hash-format = "sha512" -hash = "58622ccbab2e378d3efa750399c475bc326454c8eeed0039b49a344dc7cb51cadcbef64f9ed3e46e568dbc88b151ace573405438eb5eac713280ee5c981974a9" +hash = "413d46bdfe387a441b8b22ec0af392f0cefee28dd051e9742d966df326d28dbb0cd14c951980a00c2ddca76939c77430594af3f9bea291ebb77aa737d453ee3b" [update] [update.modrinth] mod-id = "wKkoqHrH" -version = "zVeReBHc" +version = "1iWpS0RA" From 60f523e400ac2916d25e0318640db22af8c1f1f5 Mon Sep 17 00:00:00 2001 From: Skynet <> Date: Sun, 21 Sep 2025 00:01:10 +0000 Subject: [PATCH 77/78] Updated geyser for games --- index.toml | 2 +- pack.toml | 2 +- plugins/geyser.pw.toml | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/index.toml b/index.toml index 7ea0f30..1642e4b 100644 --- a/index.toml +++ b/index.toml @@ -25,7 +25,7 @@ metafile = true [[files]] file = "plugins/geyser.pw.toml" -hash = "1cd8f7d76722483f6947c6d074c2df69604fbacfe8e916d31ce0b96de73f6699" +hash = "cfcebc4e44d75a227f46216b100437fb3d1dc786b10c6e517790f6aca2cbcff3" metafile = true [[files]] diff --git a/pack.toml b/pack.toml index b1f83c4..47d21df 100644 --- a/pack.toml +++ b/pack.toml @@ -5,7 +5,7 @@ pack-format = "packwiz:1.1.0" [index] file = "index.toml" hash-format = "sha256" -hash = "d658ef6d08f49579b40a7e3ad5e9ae18e781cd7f8fd9717b514d725ca691f2af" +hash = "47d471771ebad7b66101d002b55eeeab3d1ad8f863de649af12863e66cd8be92" [versions] minecraft = "1.21.5" diff --git a/plugins/geyser.pw.toml b/plugins/geyser.pw.toml index 5c7da07..6824b5b 100644 --- a/plugins/geyser.pw.toml +++ b/plugins/geyser.pw.toml @@ -3,11 +3,11 @@ filename = "Geyser-Spigot.jar" side = "server" [download] -url = "https://cdn.modrinth.com/data/wKkoqHrH/versions/1iWpS0RA/Geyser-Spigot.jar" +url = "https://cdn.modrinth.com/data/wKkoqHrH/versions/29cMfxqV/Geyser-Spigot.jar" hash-format = "sha512" -hash = "413d46bdfe387a441b8b22ec0af392f0cefee28dd051e9742d966df326d28dbb0cd14c951980a00c2ddca76939c77430594af3f9bea291ebb77aa737d453ee3b" +hash = "e2b7d92bda3c4ef0f61027ed321816b9d8a88d4c60ab38279caa36c776f767588260fed4f3de183ec518a764695552e2cb7d6165c55f7c2c8a655f97a3109c4c" [update] [update.modrinth] mod-id = "wKkoqHrH" -version = "1iWpS0RA" +version = "29cMfxqV" From 8904e14a27fac43d49adf32e877c0c14d702e6cb Mon Sep 17 00:00:00 2001 From: Skynet <> Date: Sun, 21 Sep 2025 00:01:14 +0000 Subject: [PATCH 78/78] Updated geyser for main --- index.toml | 2 +- pack.toml | 2 +- plugins/geyser.pw.toml | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/index.toml b/index.toml index 0c30d61..6bb1d2b 100644 --- a/index.toml +++ b/index.toml @@ -17,7 +17,7 @@ metafile = true [[files]] file = "plugins/geyser.pw.toml" -hash = "1cd8f7d76722483f6947c6d074c2df69604fbacfe8e916d31ce0b96de73f6699" +hash = "cfcebc4e44d75a227f46216b100437fb3d1dc786b10c6e517790f6aca2cbcff3" metafile = true [[files]] diff --git a/pack.toml b/pack.toml index 0196426..9f8f38d 100644 --- a/pack.toml +++ b/pack.toml @@ -5,7 +5,7 @@ pack-format = "packwiz:1.1.0" [index] file = "index.toml" hash-format = "sha256" -hash = "95c8d8372432b6fdd38c5c1cbd4aa7c095bfedff87f0ddcf5d014fc4b11329b7" +hash = "8232fce7440db8e2f5f8be1a01d74cf04852e9f8a220f32803614b7a1cecc814" [versions] minecraft = "1.21.5" diff --git a/plugins/geyser.pw.toml b/plugins/geyser.pw.toml index 5c7da07..6824b5b 100644 --- a/plugins/geyser.pw.toml +++ b/plugins/geyser.pw.toml @@ -3,11 +3,11 @@ filename = "Geyser-Spigot.jar" side = "server" [download] -url = "https://cdn.modrinth.com/data/wKkoqHrH/versions/1iWpS0RA/Geyser-Spigot.jar" +url = "https://cdn.modrinth.com/data/wKkoqHrH/versions/29cMfxqV/Geyser-Spigot.jar" hash-format = "sha512" -hash = "413d46bdfe387a441b8b22ec0af392f0cefee28dd051e9742d966df326d28dbb0cd14c951980a00c2ddca76939c77430594af3f9bea291ebb77aa737d453ee3b" +hash = "e2b7d92bda3c4ef0f61027ed321816b9d8a88d4c60ab38279caa36c776f767588260fed4f3de183ec518a764695552e2cb7d6165c55f7c2c8a655f97a3109c4c" [update] [update.modrinth] mod-id = "wKkoqHrH" -version = "1iWpS0RA" +version = "29cMfxqV"