Skip to content

Commit

Permalink
Bump to 4.3.4
Browse files Browse the repository at this point in the history
  • Loading branch information
ryderbelserion committed Dec 11, 2024
1 parent 5acb69c commit 6b11a13
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
3 changes: 1 addition & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
### Update
- Ignore offhand when right-clicking a physical crate.
- Fixed an error with war crate throwing an exception.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ plugins {

val buildNumber: String? = System.getenv("BUILD_NUMBER")

rootProject.version = if (buildNumber != null) "${libs.versions.minecraft.get()}-$buildNumber" else "4.3.3"
rootProject.version = if (buildNumber != null) "${libs.versions.minecraft.get()}-$buildNumber" else "4.3.4"

subprojects.filter { it.name != "api" }.forEach {
it.project.version = rootProject.version
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ public void run() {
if (crateManager.hasCrateTask(player)) crateManager.endCrate(player);

// Removing other items then the prize.
crateManager.addCrateTask(player, new FoliaScheduler(plugin, SchedulerType.entity_scheduler) {
crateManager.addCrateTask(player, new FoliaScheduler(plugin, null, player) {
@Override
public void run() {
for (int i = 0; i < 9; i++) {
Expand All @@ -78,7 +78,7 @@ public void run() {
if (crateManager.hasCrateTask(player)) crateManager.endCrate(player);

// Closing the inventory when finished.
crateManager.addCrateTask(player, new FoliaScheduler(plugin, SchedulerType.entity_scheduler) {
crateManager.addCrateTask(player, new FoliaScheduler(plugin, null, player) {
@Override
public void run() {
if (crateManager.hasCrateTask(player)) crateManager.endCrate(player);
Expand Down

0 comments on commit 6b11a13

Please sign in to comment.