Version increment
This commit is contained in:
@@ -1,5 +1,9 @@
|
|||||||
# Refined Storage Changelog
|
# Refined Storage Changelog
|
||||||
|
|
||||||
|
### 0.5.5
|
||||||
|
**Bugfixes**
|
||||||
|
- Fixed Grid crash
|
||||||
|
|
||||||
### 0.5.4
|
### 0.5.4
|
||||||
**Bugfixes**
|
**Bugfixes**
|
||||||
- Fixed machines out of the Controller's chunk range only connecting after block break when rejoining the world
|
- 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'
|
apply plugin: 'net.minecraftforge.gradle.forge'
|
||||||
|
|
||||||
version = "0.5.4"
|
version = "0.5.5"
|
||||||
group = "refinedstorage"
|
group = "refinedstorage"
|
||||||
archivesBaseName = "refinedstorage"
|
archivesBaseName = "refinedstorage"
|
||||||
|
|
||||||
|
@@ -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.5.4";
|
public static final String VERSION = "0.5.5";
|
||||||
|
|
||||||
public static final SimpleNetworkWrapper NETWORK = NetworkRegistry.INSTANCE.newSimpleChannel(ID);
|
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()) {
|
for (ItemGroup group : controller.getItemGroups()) {
|
||||||
group.toBytes(buf, controller.getItemGroups().indexOf(group));
|
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>();
|
List<ItemGroup> groups = new ArrayList<ItemGroup>();
|
||||||
|
|
||||||
if (connected) {
|
int size = buf.readInt();
|
||||||
int size = buf.readInt();
|
|
||||||
|
|
||||||
for (int i = 0; i < size; ++i) {
|
for (int i = 0; i < size; ++i) {
|
||||||
groups.add(new ItemGroup(buf));
|
groups.add(new ItemGroup(buf));
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
itemGroups = groups;
|
itemGroups = groups;
|
||||||
|
@@ -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.5.4",
|
"version": "0.5.5",
|
||||||
"mcversion": "1.9",
|
"mcversion": "1.9",
|
||||||
"url": "",
|
"url": "",
|
||||||
"updateUrl": "",
|
"updateUrl": "",
|
||||||
|
Reference in New Issue
Block a user