Skip to content

Commit

Permalink
1.2.7.f
Browse files Browse the repository at this point in the history
Close #122, Close #123
  • Loading branch information
MarbleGateKeeper committed Oct 24, 2023
1 parent 1b99f01 commit c427be0
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
5 changes: 5 additions & 0 deletions changelog/1.2.7.f.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
## Create: Enchantment Industry 1.2.7.f

### Fix
- Fix Crash when disenchanting Tombstone Soulbound book
- Fix Disenchanter causes client crash
2 changes: 1 addition & 1 deletion 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.e
mod_version = 1.2.7.f
artifact_minecraft_version = 1.20.1
minecraft_version = 1.20.1
forge_version = 47.0.43
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,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

0 comments on commit c427be0

Please sign in to comment.