Renamed some things

This commit is contained in:
Archtikz 2013-12-03 07:19:49 +00:00
parent b720ce59bc
commit 3f99e996dd
2 changed files with 4 additions and 3 deletions

View file

@ -8,12 +8,13 @@ import com.builtbroken.common.science.ChemicalCompound;
* @author DarkGuardsman */
public enum EnumGas
{
CarbonDiOxide("Carbon DiOxide", false),
Oxygen(ChemElement.Oxygen, 2f, true),
CARBONDIOXIDE("Carbon DiOxide", false),
OXYGEN(ChemElement.Oxygen, 2f, true),
BUTANE(ChemicalCompound.BUTANE, true),
METHANE(ChemicalCompound.METHANE, true),
NATURAL_GAS("Natural Gas", false),
PROPANE("Propane", false);
/** Name used when creating this as a fluid */
public final String fluidName;
/** Name used to display to the players */

View file

@ -242,7 +242,7 @@ public abstract class TileEntityMachine extends TileEntityInv implements ISidedI
if (((EntityPlayer) entity).openContainer.getClass().isAssignableFrom(this.getContainer()))
{
this.playersUsingMachine += 1;
this.sendGUIPacket(((EntityPlayer) entity));
this.sendGUIPacket((EntityPlayer) entity);
}
}
}