Ex Deorum 1.35
This commit is contained in:
parent
f61a2974c0
commit
f59fa93def
|
|
@ -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
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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.
|
||||
|
|
|
|||
|
|
@ -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();
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user