20 lines
927 B
Diff
20 lines
927 B
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: NanaChiyo0721 <nanachiyo0721@163.com>
|
|
Date: Sun, 26 Jul 2026 22:25:52 +0800
|
|
Subject: [PATCH] Fix wrong variable passing in RegionizedWorldData
|
|
|
|
|
|
diff --git a/io/papermc/paper/threadedregions/RegionizedWorldData.java b/io/papermc/paper/threadedregions/RegionizedWorldData.java
|
|
index cb15cfbc684ae9e9d9634886f707c2df10063139..3333fc2a564531ece613ed2ac77db99c59ec7390 100644
|
|
--- a/io/papermc/paper/threadedregions/RegionizedWorldData.java
|
|
+++ b/io/papermc/paper/threadedregions/RegionizedWorldData.java
|
|
@@ -706,7 +706,7 @@ public final class RegionizedWorldData {
|
|
}
|
|
|
|
public void setTickingBlockEntities(final boolean to) {
|
|
- this.tickingBlockEntities = true;
|
|
+ this.tickingBlockEntities = to; // Shiroha - Fix wrong variable passing in RegionizedWorldData
|
|
}
|
|
|
|
public List<TickingBlockEntity> getBlockEntityTickers() {
|