RS 1.2.3 hugh mungus edition
This commit is contained in:
@@ -1,5 +1,8 @@
|
|||||||
# Refined Storage Changelog
|
# Refined Storage Changelog
|
||||||
|
|
||||||
|
### 1.2.3
|
||||||
|
- Fixed fluid cache updating wrongly (raoulvdberge)
|
||||||
|
|
||||||
### 1.2.2
|
### 1.2.2
|
||||||
- Various autocrafting fixes (way2muchnoise)
|
- Various autocrafting fixes (way2muchnoise)
|
||||||
- Fixed item voiding when exporting to a chest with a storage in Extract Only mode (raoulvdberge)
|
- Fixed item voiding when exporting to a chest with a storage in Extract Only mode (raoulvdberge)
|
||||||
|
|||||||
@@ -20,7 +20,7 @@ apply plugin: 'maven'
|
|||||||
apply plugin: 'maven-publish'
|
apply plugin: 'maven-publish'
|
||||||
apply plugin: 'net.minecraftforge.gradle.forge'
|
apply plugin: 'net.minecraftforge.gradle.forge'
|
||||||
|
|
||||||
version = "1.2.2"
|
version = "1.2.3"
|
||||||
group = "refinedstorage"
|
group = "refinedstorage"
|
||||||
archivesBaseName = "refinedstorage"
|
archivesBaseName = "refinedstorage"
|
||||||
|
|
||||||
|
|||||||
@@ -22,7 +22,7 @@ public final class RS {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public static final String ID = "refinedstorage";
|
public static final String ID = "refinedstorage";
|
||||||
public static final String VERSION = "1.2.2";
|
public static final String VERSION = "1.2.3";
|
||||||
public static final String DEPENDENCIES = "required-after:Forge@[12.18.2.2116,);required-after:mcmultipart@[1.2.1,);after:JEI@[3.13.2.348,);";
|
public static final String DEPENDENCIES = "required-after:Forge@[12.18.2.2116,);required-after:mcmultipart@[1.2.1,);after:JEI@[3.13.2.348,);";
|
||||||
public static final String GUI_FACTORY = "com.raoulvdberge.refinedstorage.gui.config.ModGuiFactory";
|
public static final String GUI_FACTORY = "com.raoulvdberge.refinedstorage.gui.config.ModGuiFactory";
|
||||||
|
|
||||||
|
|||||||
@@ -716,7 +716,7 @@ public class TileController extends TileBase implements INetworkMaster, IEnergyR
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (took != null) {
|
if (took != null) {
|
||||||
if (storage instanceof FluidStorageExternal) {
|
if (storage instanceof FluidStorageExternal && !simulate) {
|
||||||
((FluidStorageExternal) storage).updateCacheForcefully();
|
((FluidStorageExternal) storage).updateCacheForcefully();
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -734,7 +734,7 @@ public class TileController extends TileBase implements INetworkMaster, IEnergyR
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (newStack != null) {
|
if (newStack != null && !simulate) {
|
||||||
fluidStorage.remove(newStack);
|
fluidStorage.remove(newStack);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
"modid": "refinedstorage",
|
"modid": "refinedstorage",
|
||||||
"name": "Refined Storage",
|
"name": "Refined Storage",
|
||||||
"description": "An elegant solution to your hoarding problem",
|
"description": "An elegant solution to your hoarding problem",
|
||||||
"version": "1.2.2",
|
"version": "1.2.3",
|
||||||
"mcversion": "1.10.2",
|
"mcversion": "1.10.2",
|
||||||
"url": "",
|
"url": "",
|
||||||
"updateUrl": "",
|
"updateUrl": "",
|
||||||
|
|||||||
Reference in New Issue
Block a user