Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
…ech-GIT into roundtwo
  • Loading branch information
70000hp committed Aug 30, 2023
2 parents fb2d80d + 47c8f96 commit 1aafc2d
Show file tree
Hide file tree
Showing 5 changed files with 151 additions and 7 deletions.
10 changes: 7 additions & 3 deletions changelog
Original file line number Diff line number Diff line change
@@ -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
* Fixed PWR crashing servers instantly
* Fixed missing tank textures for sodium
* Fixed missing lang entry for hot heavy water
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -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,\
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/hbm/lib/RefStrings.java
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -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);
}
Expand Down
Loading

0 comments on commit 1aafc2d

Please sign in to comment.