cleanup, add changelog
This commit is contained in:
parent
81dea5a6fd
commit
e2474bd526
3 changed files with 24 additions and 3 deletions
|
@ -22,7 +22,7 @@ apply plugin: 'forge' // adds the forge dependency
|
||||||
apply plugin: 'maven' // for uploading to a maven repo
|
apply plugin: 'maven' // for uploading to a maven repo
|
||||||
apply plugin: 'checkstyle'
|
apply plugin: 'checkstyle'
|
||||||
|
|
||||||
version = "7.0.9"
|
version = "7.0.10"
|
||||||
group= "com.mod-buildcraft"
|
group= "com.mod-buildcraft"
|
||||||
archivesBaseName = "buildcraft" // the name that all artifacts will use as a base. artifacts names follow this pattern: [baseName]-[appendix]-[version]-[classifier].[extension]
|
archivesBaseName = "buildcraft" // the name that all artifacts will use as a base. artifacts names follow this pattern: [baseName]-[appendix]-[version]-[classifier].[extension]
|
||||||
|
|
||||||
|
|
21
buildcraft_resources/changelog/7.0.10
Normal file
21
buildcraft_resources/changelog/7.0.10
Normal file
|
@ -0,0 +1,21 @@
|
||||||
|
Additions:
|
||||||
|
|
||||||
|
* New filler parameters: Center for Pyramids and Direction for Stairs (asie)
|
||||||
|
* Support for inventory Minecarts in the obsidian pipe - partially a bugfix (asie)
|
||||||
|
|
||||||
|
Improvements:
|
||||||
|
|
||||||
|
* Tweaks to water spring generation (asie)
|
||||||
|
|
||||||
|
Bugs fixed:
|
||||||
|
|
||||||
|
* [#2801] Internal server crash on certain pipe removal cases (asie)
|
||||||
|
* [#2800, others] Fluid pipe network sync (this time hopefully for real) (asie)
|
||||||
|
* [#2799] Cauldron crash on server startup (asie)
|
||||||
|
* [#2798] Crashing when rightclickling with wrench (asie)
|
||||||
|
* [#2796] Invalid height for stairs in Filler (asie)
|
||||||
|
* [#2792] Obsidian pipes not using up energy for items (asie)
|
||||||
|
* Fix buckets in stripes pipes not working with custom air blocks (asie)
|
||||||
|
* Fix stripes pipes eating unplaced blocks in a large stack (asie)
|
||||||
|
* Fix tooltip rendering in filler GUI (asie)
|
||||||
|
|
|
@ -41,9 +41,9 @@ public class SpringPopulate {
|
||||||
|
|
||||||
private void doPopulate(World world, Random random, int x, int z) {
|
private void doPopulate(World world, Random random, int x, int z) {
|
||||||
// A spring will be generated every 40th chunk.
|
// A spring will be generated every 40th chunk.
|
||||||
/* if (random.nextFloat() > 0.025f) {
|
if (random.nextFloat() > 0.025f) {
|
||||||
return;
|
return;
|
||||||
} */
|
}
|
||||||
|
|
||||||
// Do not generate water in the End or the Nether
|
// Do not generate water in the End or the Nether
|
||||||
BiomeGenBase biomegenbase = world.getWorldChunkManager().getBiomeGenAt(x, z);
|
BiomeGenBase biomegenbase = world.getWorldChunkManager().getBiomeGenAt(x, z);
|
||||||
|
|
Loading…
Reference in a new issue