diff --git a/build.gradle b/build.gradle index 454d99ce..36654975 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.1.15" +version = "7.1.16" 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.1.16 b/buildcraft_resources/changelog/7.1.16 new file mode 100644 index 00000000..99ca470b --- /dev/null +++ b/buildcraft_resources/changelog/7.1.16 @@ -0,0 +1,9 @@ +Bugs fixed: + +* [#3254] Shutdown robots glitching through blocks in certain conditions (asie) +* [#3253] Rare NPE in BlockGenericPipe with Logistics Pipes (asie) +* [#3234] Engines don't properly power machines on multiple sides (asie) +* [#3211] Knight Robots not dropping/unloading weapons (asie) +* [#3159] Knight Robots not using the Attack Damage boost on weapons (asie) +* [#3156] Achievement tab crash upon disabling certain items (asie) +* [#3131] NPE in FacadeRenderHelper (asie) diff --git a/buildcraft_resources/versions.txt b/buildcraft_resources/versions.txt index 2183614e..36f743b4 100755 --- a/buildcraft_resources/versions.txt +++ b/buildcraft_resources/versions.txt @@ -1,3 +1,3 @@ 1.6.4:BuildCraft:4.2.2 1.7.2:BuildCraft:6.0.16 -1.7.10:BuildCraft:7.1.15 +1.7.10:BuildCraft:7.1.16 diff --git a/common/buildcraft/robotics/ai/AIRobotShutdown.java b/common/buildcraft/robotics/ai/AIRobotShutdown.java index 3c0c4d7b..8b90fdea 100644 --- a/common/buildcraft/robotics/ai/AIRobotShutdown.java +++ b/common/buildcraft/robotics/ai/AIRobotShutdown.java @@ -8,8 +8,6 @@ */ package buildcraft.robotics.ai; -import java.util.List; - import buildcraft.api.robots.AIRobot; import buildcraft.api.robots.EntityRobotBase;