Skip to content

Commit

Permalink
1.2.7.d
Browse files Browse the repository at this point in the history
  • Loading branch information
MarbleGateKeeper committed Nov 3, 2023
1 parent 584ef1c commit 3dc48e8
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 4 deletions.
6 changes: 6 additions & 0 deletions changelog/1.2.7.d.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
## Create: Enchantment Industry 1.2.7.d
Update for Create 0.5.1.f

### Bugfix
- Fix Crash when disenchanting Tombstone Soulbound book
- Fix Disenchanter causes client crash
6 changes: 3 additions & 3 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ org.gradle.jvmargs=-Xmx3G
org.gradle.daemon=false

# Mod Versions
mod_version = 1.2.7.c
mod_version = 1.2.7.d
artifact_minecraft_version = 1.18.2
minecraft_version = 1.18.2
forge_version = 40.2.4
Expand All @@ -18,8 +18,8 @@ parchment_version = 2022.11.06
# Dependency Versions
create_minecraft_version = 1.18.2
flywheel_minecraft_version = 1.18.2
create_version = 0.5.1.e
create_version_build = 318
create_version = 0.5.1.f
create_version_build = 332
flywheel_version = 0.6.10-105
registrate_version = MC1.18.2-1.1.3
jei_minecraft_version = 1.18.2
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -137,6 +137,7 @@ protected void renderFluid(DisenchanterBlockEntity be, float partialTicks, PoseS
var result = Disenchanting.disenchantResult(transported.stack, be.getLevel());
if (result == null) return;
FluidStack xp = result.getFirst();
if (xp.isEmpty()) return;

int processingTicks = be.processingTicks;
float processingProgress = processingTicks == 0 ? 0
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/META-INF/mods.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,6 @@ side="BOTH"
[[dependencies.create_enchantment_industry]]
modId="create"
mandatory=true
versionRange="[0.5.1.e,)"
versionRange="[0.5.1.f,)"
ordering="NONE"
side="BOTH"

0 comments on commit 3dc48e8

Please sign in to comment.