From 07cf03b36576e76c2ab9fd87ff28d3ea1208b039 Mon Sep 17 00:00:00 2001 From: Boblet Date: Wed, 30 Aug 2023 09:42:25 +0200 Subject: [PATCH] changelog + version bump --- changelog | 10 +++++++--- gradle.properties | 2 +- src/main/java/com/hbm/lib/RefStrings.java | 2 +- .../tileentity/machine/TileEntityPWRController.java | 3 +++ 4 files changed, 12 insertions(+), 5 deletions(-) diff --git a/changelog b/changelog index feecf72041..f8a8f76527 100644 --- a/changelog +++ b/changelog @@ -1,4 +1,8 @@ +## Changed +* Thorium salts can no longer be stored in normal tanks due to being corrosive +* Updated russian localization + ## Fixed -* Fixed PWR still operating as normal even when the structure is dissolved -* Fixed the new watz not giving the meltdown achievement -* Fixed serverside crash caused by conveyor cranes \ No newline at end of file +* Fixed PWR crashing servers instantly +* Fixed missing tank textures for sodium +* Fixed missing lang entry for hot heavy water \ No newline at end of file diff --git a/gradle.properties b/gradle.properties index d57216f6b5..444f624135 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,6 +1,6 @@ mod_version=1.0.27 # Empty build number makes a release type -mod_build_number=4705 +mod_build_number=4707 credits=HbMinecraft, rodolphito (explosion algorithms), grangerave (explosion algorithms),\ \ Hoboy (textures, models), Doctor17 (russian localization), Drillgon200 (effects, models,\ diff --git a/src/main/java/com/hbm/lib/RefStrings.java b/src/main/java/com/hbm/lib/RefStrings.java index aeebbd4c04..3d31d7c2a8 100644 --- a/src/main/java/com/hbm/lib/RefStrings.java +++ b/src/main/java/com/hbm/lib/RefStrings.java @@ -3,7 +3,7 @@ public class RefStrings { public static final String MODID = "hbm"; public static final String NAME = "Hbm's Nuclear Tech Mod"; - public static final String VERSION = "1.0.27 BETA (4705)"; + public static final String VERSION = "1.0.27 BETA (4707)"; //HBM's Beta Naming Convention: //V T (X) //V -> next release version diff --git a/src/main/java/com/hbm/tileentity/machine/TileEntityPWRController.java b/src/main/java/com/hbm/tileentity/machine/TileEntityPWRController.java index 5ef179413a..8d1568b2de 100644 --- a/src/main/java/com/hbm/tileentity/machine/TileEntityPWRController.java +++ b/src/main/java/com/hbm/tileentity/machine/TileEntityPWRController.java @@ -25,6 +25,8 @@ import com.hbm.util.fauxpointtwelve.BlockPos; import api.hbm.fluid.IFluidStandardTransceiver; +import cpw.mods.fml.relauncher.Side; +import cpw.mods.fml.relauncher.SideOnly; import net.minecraft.block.Block; import net.minecraft.client.gui.GuiScreen; import net.minecraft.entity.player.EntityPlayer; @@ -506,6 +508,7 @@ public Container provideContainer(int ID, EntityPlayer player, World world, int } @Override + @SideOnly(Side.CLIENT) public GuiScreen provideGUI(int ID, EntityPlayer player, World world, int x, int y, int z) { return new GUIPWR(player.inventory, this); }