Skip to content

Commit

Permalink
1.3.9.b
Browse files Browse the repository at this point in the history
  • Loading branch information
MarbleGateKeeper committed Dec 21, 2023
1 parent 7d59e72 commit 46dad88
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 43 deletions.
36 changes: 0 additions & 36 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -191,24 +191,6 @@ publishMods {
requires {
slug = "create"
}
optional {
slug = "createaddition"
}
optional {
slug = "farmers-delight"
}
optional {
slug = "miners-delight-plus"
}
optional {
slug = "nethers-delight"
}
optional {
slug = "corn-delight"
}
optional {
slug = "overweight-farming"
}
}

modrinth {
Expand All @@ -219,24 +201,6 @@ publishMods {
requires {
slug = "create"
}
optional {
slug = "createaddition"
}
optional {
slug = "farmers-delight"
}
optional {
slug = "miners-delight-plus"
}
optional {
slug = "nethers-delight"
}
optional {
slug = "corn-delight"
}
optional {
slug = "overweight-farming"
}
}
}

Expand Down
5 changes: 5 additions & 0 deletions changelog/1.3.9.b.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
## Create Central Kitchen 1.3.9.b

# Bugfix
- Fix model missing caused by Forgetting Push origin/
- Fix crash when creating work with botarium installed
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ org.gradle.jvmargs=-Xmx3G
org.gradle.daemon=false

# mod version info
mod_version = 1.3.9
mod_version = 1.3.9.b
artifact_minecraft_version = 1.20.1
minecraft_version = 1.20.1
forge_version = 47.1.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,21 +15,21 @@ public DelegatingSmartTileEntity(BE blockEntity) {
super(blockEntity.getType(), blockEntity.getBlockPos(), blockEntity.getBlockState());
this.blockEntity = blockEntity;
}

@Nullable
@Override
public Level getLevel() {
return blockEntity.getLevel();
}

@Override
public BlockPos getBlockPos() {
return blockEntity.getBlockPos();
}

@Override
public BlockState getBlockState() {
return blockEntity.getBlockState();
}

}
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@
import net.minecraft.world.level.block.state.BlockState;
import org.spongepowered.asm.mixin.Mixin;
import org.spongepowered.asm.mixin.Unique;
import plus.dragons.createcentralkitchen.api.block.entity.SmartBlockEntityLike;
import plus.dragons.createcentralkitchen.content.logistics.block.basket.SmartBasketBlockEntity;
import vectorwing.farmersdelight.common.block.entity.Basket;
import vectorwing.farmersdelight.common.block.entity.BasketBlockEntity;

@Mixin(BasketBlockEntity.class)
public abstract class BasketBlockEntityMixin extends RandomizableContainerBlockEntity implements SmartBlockEntityLike {
public abstract class BasketBlockEntityMixin extends RandomizableContainerBlockEntity implements Basket {

@Unique
private final SmartBlockEntity smartBlockEntity = new SmartBasketBlockEntity((BasketBlockEntity) (Object) this);
Expand Down

0 comments on commit 46dad88

Please sign in to comment.