More fixes

This commit is contained in:
Raoul Van den Berge
2016-06-24 19:08:41 +02:00
parent 03fcc1b0d9
commit 27910b39cf
6 changed files with 7 additions and 12 deletions

View File

@@ -1,16 +1,11 @@
# Refined Storage Changelog # Refined Storage Changelog
### 0.7.17-pre1 ### 0.7.17
When updating to this version, you'll have to break and replace your controller.
**Bugfixes** **Bugfixes**
- Fixed controller not working after leaving chunk
- Fixed machines not working when leaving chunk
- Fixed getting wrong items back in grid - Fixed getting wrong items back in grid
- Fixed wrong item getting crafted - Fixed wrong item getting crafted
- Updated Forge to 1969 - Updated Forge to 1969
- Updated JEI - Updated JEI
- Rewrote storage networks: they are now saved to disk, so big systems won't lag when rejoining a chunk
**Features** **Features**
- New crafting settings gui - New crafting settings gui

View File

@@ -12,7 +12,7 @@ buildscript {
} }
apply plugin: 'net.minecraftforge.gradle.forge' apply plugin: 'net.minecraftforge.gradle.forge'
version = "0.7.17-pre1" version = "0.7.17"
group = "refinedstorage" group = "refinedstorage"
archivesBaseName = "refinedstorage" archivesBaseName = "refinedstorage"

View File

@@ -19,7 +19,7 @@ import refinedstorage.proxy.CommonProxy;
@Mod(modid = RefinedStorage.ID, version = RefinedStorage.VERSION) @Mod(modid = RefinedStorage.ID, version = RefinedStorage.VERSION)
public final class RefinedStorage { public final class RefinedStorage {
public static final String ID = "refinedstorage"; public static final String ID = "refinedstorage";
public static final String VERSION = "0.7.17-pre1"; public static final String VERSION = "0.7.17";
public static final SimpleNetworkWrapper NETWORK = NetworkRegistry.INSTANCE.newSimpleChannel(ID); public static final SimpleNetworkWrapper NETWORK = NetworkRegistry.INSTANCE.newSimpleChannel(ID);

View File

@@ -102,7 +102,7 @@ public abstract class TileSlave extends TileBase implements INetworkSlave, ISync
if (network == null) { if (network == null) {
if (controller != null) { if (controller != null) {
connect(world, network); connect(world, controller);
} }
} else { } else {
if (controller == null) { if (controller == null) {

View File

@@ -165,13 +165,13 @@ public class TileController extends TileBase implements INetworkMaster, IEnergyR
wirelessGridHandler.update(); wirelessGridHandler.update();
if (type == EnumControllerType.NORMAL && energyUsage > 0) { if (getType() == EnumControllerType.NORMAL && energyUsage > 0) {
if (energy.getEnergyStored() - energyUsage >= 0) { if (energy.getEnergyStored() - energyUsage >= 0) {
energy.extractEnergy(energyUsage, false); energy.extractEnergy(energyUsage, false);
} else { } else {
energy.setEnergyStored(0); energy.setEnergyStored(0);
} }
} else if (type == EnumControllerType.CREATIVE) { } else if (getType() == EnumControllerType.CREATIVE) {
energy.setEnergyStored(energy.getMaxEnergyStored()); energy.setEnergyStored(energy.getMaxEnergyStored());
} }

View File

@@ -3,7 +3,7 @@
"modid": "refinedstorage", "modid": "refinedstorage",
"name": "Refined Storage", "name": "Refined Storage",
"description": "A Minecraft mod all about storage.", "description": "A Minecraft mod all about storage.",
"version": "0.7.17-pre1", "version": "0.7.17",
"mcversion": "1.9.4", "mcversion": "1.9.4",
"url": "", "url": "",
"updateUrl": "", "updateUrl": "",