Version increment
This commit is contained in:
@@ -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
|
||||
|
@@ -12,7 +12,7 @@ buildscript {
|
||||
}
|
||||
apply plugin: 'net.minecraftforge.gradle.forge'
|
||||
|
||||
version = "0.5.4"
|
||||
version = "0.5.5"
|
||||
group = "refinedstorage"
|
||||
archivesBaseName = "refinedstorage"
|
||||
|
||||
|
@@ -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);
|
||||
|
||||
|
@@ -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,12 +297,10 @@ public class TileGrid extends TileMachine implements IGrid {
|
||||
|
||||
List<ItemGroup> groups = new ArrayList<ItemGroup>();
|
||||
|
||||
if (connected) {
|
||||
int size = buf.readInt();
|
||||
int size = buf.readInt();
|
||||
|
||||
for (int i = 0; i < size; ++i) {
|
||||
groups.add(new ItemGroup(buf));
|
||||
}
|
||||
for (int i = 0; i < size; ++i) {
|
||||
groups.add(new ItemGroup(buf));
|
||||
}
|
||||
|
||||
itemGroups = groups;
|
||||
|
@@ -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": "",
|
||||
|
Reference in New Issue
Block a user