[PR #42] feat(chunkload): Add chunkloader #42

Open
opened 2026-05-06 16:05:16 +02:00 by BreizhHardware · 0 comments

📋 Pull Request Information

Original PR: https://github.com/BreizhHardware/CipaUtils/pull/42
Author: @BreizhHardware
Created: 1/15/2026
Status: 🔄 Open

Base: devHead: feature/chunkloader


📝 Commits (8)

  • c5ec045 feat(chunkload): Add chunkloader
  • bc5287e feat(chunkload): enhance chunkloader functionality with ownership checks and particle effects
  • 335b4e2 Update src/main/java/bzh/breizhhardware/cipautils/recipeManager/RecipeManager.java
  • 1a0387d Update src/main/java/bzh/breizhhardware/cipautils/Main.java
  • 1174ace Update src/main/resources/plugin.yml
  • c3d923f Update src/main/java/bzh/breizhhardware/cipautils/chunkloader/ChunkLoaderManager.java
  • efd8507 Update src/main/java/bzh/breizhhardware/cipautils/chunkloader/ChunkLoaderManager.java
  • d2dca3c fix(chunkload): Fix multiple issue

📊 Changes

10 files changed (+586 additions, -22 deletions)

View changed files

📝 build.gradle (+1 -1)
📝 bump-version.sh (+5 -5)
📝 src/main/java/bzh/breizhhardware/cipautils/Main.java (+202 -5)
src/main/java/bzh/breizhhardware/cipautils/chunkloader/ChunkLoaderManager.java (+252 -0)
src/main/java/bzh/breizhhardware/cipautils/recipeManager/RecipeManager.java (+102 -0)
📝 src/main/java/bzh/breizhhardware/cipautils/waystone/WaystoneGUI.java (+2 -2)
📝 src/main/java/bzh/breizhhardware/cipautils/waystone/WaystoneListener.java (+7 -0)
📝 src/main/resources/plugin.yml (+9 -3)
📝 start-test-server.bat (+3 -3)
📝 start-test-server.sh (+3 -3)

📄 Description

Description

Add a chunkloader block that can chunkload a 3x3 chunk by player

Checklist

  • I have bumped the version in all required files (build.gradle, plugin.yml, start-test-server.bat, start-test-server.sh) (mandatory for a PR from dev to main)
  • I have tested the changes locally
  • I have updated the documentation if needed
  • I have set the destination branch to dev (unless it's a hotfix to main)

Type of change

  • Bug fix
  • New feature
  • Refactoring
  • Other (please specify)

#31


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/BreizhHardware/CipaUtils/pull/42 **Author:** [@BreizhHardware](https://github.com/BreizhHardware) **Created:** 1/15/2026 **Status:** 🔄 Open **Base:** `dev` ← **Head:** `feature/chunkloader` --- ### 📝 Commits (8) - [`c5ec045`](https://github.com/BreizhHardware/CipaUtils/commit/c5ec0456d2008216c9f92854cc27eb7a4b469a12) feat(chunkload): Add chunkloader - [`bc5287e`](https://github.com/BreizhHardware/CipaUtils/commit/bc5287efbc5cfddaa1d008e380d0d1bf7da3338b) feat(chunkload): enhance chunkloader functionality with ownership checks and particle effects - [`335b4e2`](https://github.com/BreizhHardware/CipaUtils/commit/335b4e239e17e45bc8c57c6de590575ca557325c) Update src/main/java/bzh/breizhhardware/cipautils/recipeManager/RecipeManager.java - [`1a0387d`](https://github.com/BreizhHardware/CipaUtils/commit/1a0387dcebf43b517a54fa49ca3c441c510b79e6) Update src/main/java/bzh/breizhhardware/cipautils/Main.java - [`1174ace`](https://github.com/BreizhHardware/CipaUtils/commit/1174aced51f09c3e295c9f90dd97e1cda17c7b3c) Update src/main/resources/plugin.yml - [`c3d923f`](https://github.com/BreizhHardware/CipaUtils/commit/c3d923ff9b476ee810b12fb90dd2806a099c9a00) Update src/main/java/bzh/breizhhardware/cipautils/chunkloader/ChunkLoaderManager.java - [`efd8507`](https://github.com/BreizhHardware/CipaUtils/commit/efd85070408e72a75d48b1635920995d35e7de58) Update src/main/java/bzh/breizhhardware/cipautils/chunkloader/ChunkLoaderManager.java - [`d2dca3c`](https://github.com/BreizhHardware/CipaUtils/commit/d2dca3cb4ee70cb9ad26ae91bcb4e128f51f846d) fix(chunkload): Fix multiple issue ### 📊 Changes **10 files changed** (+586 additions, -22 deletions) <details> <summary>View changed files</summary> 📝 `build.gradle` (+1 -1) 📝 `bump-version.sh` (+5 -5) 📝 `src/main/java/bzh/breizhhardware/cipautils/Main.java` (+202 -5) ➕ `src/main/java/bzh/breizhhardware/cipautils/chunkloader/ChunkLoaderManager.java` (+252 -0) ➕ `src/main/java/bzh/breizhhardware/cipautils/recipeManager/RecipeManager.java` (+102 -0) 📝 `src/main/java/bzh/breizhhardware/cipautils/waystone/WaystoneGUI.java` (+2 -2) 📝 `src/main/java/bzh/breizhhardware/cipautils/waystone/WaystoneListener.java` (+7 -0) 📝 `src/main/resources/plugin.yml` (+9 -3) 📝 `start-test-server.bat` (+3 -3) 📝 `start-test-server.sh` (+3 -3) </details> ### 📄 Description ## Description Add a chunkloader block that can chunkload a 3x3 chunk by player ## Checklist - [x] I have bumped the version in all required files (`build.gradle`, `plugin.yml`, `start-test-server.bat`, `start-test-server.sh`) (mandatory for a PR from `dev` to `main`) - [x] I have tested the changes locally - [ ] I have updated the documentation if needed - [x] I have set the destination branch to `dev` (unless it's a hotfix to `main`) ## Type of change - [ ] Bug fix - [x] New feature - [ ] Refactoring - [ ] Other (please specify) ## Related issues #31 --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
BreizhHardware/CipaUtils#42
No description provided.