Version increment

This commit is contained in:
Raoul Van den Berge
2016-04-05 05:53:04 +02:00
parent e4c8ed9b85
commit adfc4f36c2
5 changed files with 12 additions and 8 deletions

View File

@@ -1,5 +1,9 @@
# Refined Storage Changelog
### 0.5.5
**Bugfixes**
- Fixed Grid crash
### 0.5.4
**Bugfixes**
- Fixed machines out of the Controller's chunk range only connecting after block break when rejoining the world

View File

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

View File

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

View File

@@ -282,6 +282,8 @@ public class TileGrid extends TileMachine implements IGrid {
for (ItemGroup group : controller.getItemGroups()) {
group.toBytes(buf, controller.getItemGroups().indexOf(group));
}
} else {
buf.writeInt(0);
}
}
@@ -295,13 +297,11 @@ public class TileGrid extends TileMachine implements IGrid {
List<ItemGroup> groups = new ArrayList<ItemGroup>();
if (connected) {
int size = buf.readInt();
for (int i = 0; i < size; ++i) {
groups.add(new ItemGroup(buf));
}
}
itemGroups = groups;
}

View File

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