Skip to content

Commit 21a3e7e

Browse files
2.2.2
1 parent 6597d79 commit 21a3e7e

3 files changed

Lines changed: 11 additions & 9 deletions

File tree

CHANGELOG.md

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
1-
## Create: Central Kitchen 2.2.1
1+
## Create: Central Kitchen 2.2.2
22

3-
#### Update
4-
* Update Russian Translation by @Karbin Drem
3+
### Fix
4+
* **(Critical)** Fix Extra Delight recipe conversion does not working and mess up Machines
5+
* Fix an error in Extra Delight Ponder
56

6-
#### Fix
7-
* Fix an ultra-rare crashing issue with Placebo
7+
### Revert
8+
* Revert last patch for Placebo crash since the issue seems to be not on this side and current patch cause else issue.
9+
10+
If you encounter another crash and also have Placebo installed, please inform me with complete log, thanks!

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ mod_id = create_central_kitchen
1717
mod_artifact_id = create-central-kitchen
1818
mod_name = Create: Central Kitchen
1919
mod_license = LGPL-3.0-or-later
20-
mod_version = 2.2.1
20+
mod_version = 2.2.2
2121
mod_group_id = plus.dragons.createcentralkitchen
2222
mod_authors = DragonsPlus
2323
mod_description = Integrated cooking automation for Create

src/main/java/plus/dragons/createcentralkitchen/common/CCKCommon.java

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,9 @@
2222
import java.util.Set;
2323
import java.util.concurrent.CompletableFuture;
2424
import net.createmod.catnip.lang.FontHelper;
25-
import net.minecraft.Util;
2625
import net.minecraft.core.HolderLookup;
27-
import net.minecraft.data.registries.VanillaRegistries;
2826
import net.minecraft.resources.ResourceLocation;
27+
import net.minecraft.server.RegistryLayer;
2928
import net.minecraft.server.packs.PackType;
3029
import net.minecraft.server.packs.repository.Pack.Position;
3130
import net.neoforged.bus.api.IEventBus;
@@ -71,7 +70,7 @@ public CCKCommon(IEventBus modBus, ModContainer modContainer) {
7170
@SubscribeEvent
7271
public void addPackFinders(final AddPackFindersEvent event) {
7372
var type = event.getPackType();
74-
CompletableFuture<HolderLookup.Provider> registries = CompletableFuture.supplyAsync(VanillaRegistries::createLookup, Util.backgroundExecutor());
73+
var registries = CompletableFuture.<HolderLookup.Provider>completedFuture(RegistryLayer.createRegistryAccess().compositeAccess());
7574
if (type == PackType.SERVER_DATA) {
7675
var pack = new RuntimePackResources(
7776
"runtime",

0 commit comments

Comments
 (0)