backport1.20.1 #6

Zusammengeführt
YoyoNow hat 54 Commits von backport1.20.1 nach master 2024-02-01 19:58:32 +01:00 zusammengeführt
Nur Änderungen aus Commit b6afa50b04 werden angezeigt - Alle Commits anzeigen

Datei anzeigen

@ -42,12 +42,12 @@ public class ServerWorldPropertyHolder<T> {
if (result.isUpdate()) {
this.value = newValue;
if (!result.isSync()) {
this.unsyncedValue = true;
}
}
if (result.isSync()) {
this.sync(world);
} else {
this.unsyncedValue = true;
}
}
}