Update changelog

This commit is contained in:
Raoul Van den Berge
2016-08-06 23:00:14 +02:00
parent 56774d4674
commit e73bc5b2e7
2 changed files with 6 additions and 5 deletions

View File

@@ -3,20 +3,21 @@
### 0.8.16 ### 0.8.16
**Bugfixes** **Bugfixes**
- Fixed issue with IC2 integration causing console spam - Fixed issue with IC2 integration causing console spam
- Slight performance improvement in GUI's - Slight performance increase and network efficiency improvement in all GUI's
- Slight performance increase in Grid GUI
- Fixed not being able to change some configs in blocks - Fixed not being able to change some configs in blocks
- Fixed serverside configs not syncing up with clientside - Fixed serverside configs not syncing up with clientside
- Fixed not being able to move inventory items in Grid GUI's to hotbar via the number keys - Fixed not being able to move inventory items in Grid GUI's to hotbar via the number keys
- Improved collisions of Cable parts
**Features** **Features**
- Added German translation by ChillUpX - Added German translation by ChillUpX
- Each Grid Filter can now only filter 9 items - Grid Filters can now only filter 9 items, but, Grids take 4 filters now instead
- Each Grid allows 4 Grid Filters instead of 1
- Grid Filters can now be configured to compare on NBT and/ or damage - Grid Filters can now be configured to compare on NBT and/ or damage
- Updated to Forge 2046 - Updated to Forge 2046
- Updated Tesla - Updated Tesla
- Java 8 is now a requirement - Java 8 is now a requirement
- Added MCMultiPart integration - Added MCMultiPart integration for Cables
### 0.8.15 ### 0.8.15
**Bugfixes** **Bugfixes**

View File

@@ -375,7 +375,7 @@ public class TileGrid extends TileNode implements IGrid {
@Override @Override
public int getSearchBoxMode() { public int getSearchBoxMode() {
return (worldObj != null && worldObj.isRemote) ? SEARCH_BOX_MODE.getValue() : searchBoxMode; return worldObj.isRemote ? SEARCH_BOX_MODE.getValue() : searchBoxMode;
} }
@Override @Override