From e2474bd526b4da180f15d74f127e1723a8e0f416 Mon Sep 17 00:00:00 2001 From: Adrian Date: Sun, 14 Jun 2015 15:03:06 +0200 Subject: [PATCH] cleanup, add changelog --- build.gradle | 2 +- buildcraft_resources/changelog/7.0.10 | 21 +++++++++++++++++++++ common/buildcraft/core/SpringPopulate.java | 4 ++-- 3 files changed, 24 insertions(+), 3 deletions(-) create mode 100644 buildcraft_resources/changelog/7.0.10 diff --git a/build.gradle b/build.gradle index bfa1560a..68a5345e 100755 --- a/build.gradle +++ b/build.gradle @@ -22,7 +22,7 @@ apply plugin: 'forge' // adds the forge dependency apply plugin: 'maven' // for uploading to a maven repo apply plugin: 'checkstyle' -version = "7.0.9" +version = "7.0.10" 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] diff --git a/buildcraft_resources/changelog/7.0.10 b/buildcraft_resources/changelog/7.0.10 new file mode 100644 index 00000000..ea8cc872 --- /dev/null +++ b/buildcraft_resources/changelog/7.0.10 @@ -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) + diff --git a/common/buildcraft/core/SpringPopulate.java b/common/buildcraft/core/SpringPopulate.java index 3d7c4c01..c2ded6ab 100644 --- a/common/buildcraft/core/SpringPopulate.java +++ b/common/buildcraft/core/SpringPopulate.java @@ -41,9 +41,9 @@ public class SpringPopulate { private void doPopulate(World world, Random random, int x, int z) { // A spring will be generated every 40th chunk. - /* if (random.nextFloat() > 0.025f) { + if (random.nextFloat() > 0.025f) { return; - } */ + } // Do not generate water in the End or the Nether BiomeGenBase biomegenbase = world.getWorldChunkManager().getBiomeGenAt(x, z);