Ex Deorum 1.35

This commit is contained in:
thedarkcolour 2024-05-21 16:10:57 -07:00
parent f61a2974c0
commit f59fa93def
No known key found for this signature in database
GPG Key ID: 6599A8E0516C8F38
3 changed files with 15 additions and 3 deletions

View File

@ -5,7 +5,7 @@ plugins {
id 'org.spongepowered.mixin' version '0.7.+'
}
version = '1.34'
version = '1.35'
group = 'thedarkcolour.exdeorum'
base {
archivesName = 'exdeorum'
@ -205,3 +205,10 @@ jar {
])
}
}
idea {
module {
downloadSources = true
downloadJavadoc = true
}
}

View File

@ -1,3 +1,8 @@
## Ex Deorum 1.35
- Fixed bug where barrels would not trigger a transformation recipe while it is raining (ex. Witch Water conversion)
- Fixed barrel fluid transformation recipes ignoring the result fluid and only crafting witch water
- Added clientside config option to disable rainbow compost in barrels during June
## Ex Deorum 1.34
- Fix overriding default world type in Create World screen when common config option set_void_world_as_default is false.
- Removed set_void_world_as_default option from client config, you must now only use the option from the common config.

View File

@ -70,8 +70,8 @@ public abstract class AbstractCrucibleBlockEntity extends EBlockEntity {
return map;
});
private static final int MAX_SOLIDS = 1000;
private static final int MAX_FLUID_CAPACITY = 4000;
public static final int MAX_SOLIDS = 1000;
public static final int MAX_FLUID_CAPACITY = 4000;
private final AbstractCrucibleBlockEntity.ItemHandler item = new AbstractCrucibleBlockEntity.ItemHandler();
private final AbstractCrucibleBlockEntity.FluidHandler tank = new AbstractCrucibleBlockEntity.FluidHandler();