Merge remote-tracking branch 'origin/master'

This commit is contained in:
Boblet 2021-10-19 14:24:33 +02:00
commit 1824f23841
3 changed files with 4 additions and 4 deletions

View File

@ -3,7 +3,7 @@ package com.hbm.lib;
public class RefStrings { public class RefStrings {
public static final String MODID = "hbm"; public static final String MODID = "hbm";
public static final String NAME = "Hbm's Nuclear Tech Mod"; public static final String NAME = "Hbm's Nuclear Tech Mod";
public static final String VERSION = "1.0.27 BETA (4025)"; public static final String VERSION = "1.0.27 BETA (4026)";
//HBM's Beta Naming Convention: //HBM's Beta Naming Convention:
//V T (X) //V T (X)
//V -> next release version //V -> next release version

View File

@ -74,8 +74,8 @@ public class TileEntityCraneConsole extends TileEntity implements INBTPacketRece
progress = 0; progress = 0;
goesDown = false; goesDown = false;
if(this.canTargetInteract()) { if(!worldObj.isRemote && this.canTargetInteract()) {
if(this.hasItemLoaded()) { if(this.loadedItem != null) {
getColumnAtPos().load(this.loadedItem); getColumnAtPos().load(this.loadedItem);
this.loadedItem = null; this.loadedItem = null;
} else { } else {

View File

@ -3,7 +3,7 @@
"modid": "hbm", "modid": "hbm",
"name": "Hbm's Nuclear Tech", "name": "Hbm's Nuclear Tech",
"description": "A mod that adds weapons, nuclear themed stuff and machines", "description": "A mod that adds weapons, nuclear themed stuff and machines",
"version":"1.0.27_X4025", "version":"1.0.27_X4026",
"mcversion": "1.7.10", "mcversion": "1.7.10",
"url": "", "url": "",
"updateUrl": "", "updateUrl": "",