Skip to content

Commit f5e5da8

Browse files
committed
Update mod version
1 parent 69f647b commit f5e5da8

12 files changed

Lines changed: 28 additions & 16 deletions

File tree

build.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#
22
#Fri Jul 12 14:36:24 CEST 2019
33
version_minor=4
4-
version_revision=3
4+
version_revision=4
55
minecraft_version=1.7.10
6-
version_build=14
6+
version_build=1
77
version_major=1

changelogs/Version 1.4.4-1.txt

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
Version 1.4.4 build 1
2+
- Stop other mods from using the physica ore in their smelting processes. They can still use it if it is on purpose.
3+
- Fix bug with energy network that stopped certain electric blocks from working.
4+
- Update Aurilis License to add terms for contributors.
5+
- Fix issues with energy cables. Would only accept one connection per block.
6+
- Change infinite energy cable energy amount to Integer.MAX_VALUE
7+
- Stop gas centrifuge from being able to store progress. The gas would just mix again.
8+
- Make the chemical boiler store progress.
9+
- Make the chemical extractor store progress.
10+
- Add optimized version of the turbine model for fast graphics
11+
- Update all ingot textures.
12+
- Update all plate textures.
13+
- Update wrench texture.
14+
- Update wrench rendering so it is rotated in the right way when holding it.
15+
- Remove the Micro Measurement unit since the text was bugged. Lowest is now milli.
16+
- Fix durability bar for electric items. Only shows the bar when it has been used at all. If it has 100% then the bar does not render.
17+
- Reduce hazmat armor durability to fix bugs.
18+
- Remove the energy storage in the reactor control panel

src/main/java/physica/core/common/CoreItemRegister.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ public void preInit()
2727
GameRegistry.registerItem(itemEmptyCell = (ItemInformationHolder) new ItemInformationHolder("emptyCell").setMaxStackSize(64), itemEmptyCell.getUnlocalizedName());
2828
GameRegistry.registerItem(itemMetaCircuit = new ItemMetaHolder("circuit_basic").addSubItem("circuit_advanced").addSubItem("circuit_elite"), "item.metaCircuit");
2929
GameRegistry.registerItem(itemMetaPlate = new ItemMetaHolder("plateIron").addSubItem("plateSteel").addSubItem("plateLead"), "item.metaPlate");
30-
GameRegistry.registerItem(itemMetaIngot = new ItemMetaHolder("ingotTin").addSubItem("ingotCopper").addSubItem("ingotSteel").addSubItem("ingotLead").addSubItem("ingotSilver").addSubItem("ingotSuperConductive"), "item.metaIngot");
30+
GameRegistry.registerItem(itemMetaIngot = new ItemMetaHolder("tinIngot").addSubItem("copperIngot").addSubItem("steelIngot").addSubItem("leadIngot").addSubItem("silverIngot").addSubItem("superConductiveIngot"), "item.metaIngot");
3131
GameRegistry.registerItem(itemMetaBlend = new ItemMetaHolder("blendSuperConductive"), "item.metaBlend");
3232
GameRegistry.registerItem(itemWrench = new ItemWrench(), itemWrench.getUnlocalizedName());
3333
GameRegistry.registerItem(itemMotor = (ItemInformationHolder) new ItemInformationHolder("motor").setMaxStackSize(64), itemMotor.getUnlocalizedName());

src/main/java/physica/core/common/items/ItemMultimeter.java

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,6 @@ public ItemMultimeter() {
2222
setCreativeTab(CoreTabRegister.coreTab);
2323
}
2424

25-
@Override
26-
public boolean isFull3D()
27-
{
28-
return false;
29-
}
30-
3125
@Override
3226
public boolean onItemUseFirst(ItemStack stack, EntityPlayer player, World world, int x, int y, int z, int side, float hitX, float hitY, float hitZ)
3327
{

src/main/java/physica/library/item/ItemElectric.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ public boolean showDurabilityBar(ItemStack stack)
7171
public void addInformation(ItemStack stack, EntityPlayer player, @SuppressWarnings("rawtypes") List info, boolean par4)
7272
{
7373
super.addInformation(stack, player, info, par4);
74-
info.add(EnumChatFormatting.AQUA + "Power Stored: " + EnumChatFormatting.GRAY + ElectricityDisplay.getDisplay(ElectricityUtilities.convertEnergy(getEnergyStored(stack), Unit.RF, Unit.WATT), Unit.WATT));
74+
info.add(EnumChatFormatting.AQUA + "Energy Stored: " + EnumChatFormatting.GRAY + ElectricityDisplay.getDisplay(ElectricityUtilities.convertEnergy(getEnergyStored(stack), Unit.RF, Unit.WATT), Unit.WATT));
7575
}
7676

7777
@Override

src/main/resources/assets/physica/lang/en_US.lang

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,12 @@ tile.physica:blastFurnace.gui=Blast Furnace
1818
item.emptyCell.name=Empty Cell
1919
item.motor.name=Motor
2020
item.multimeter.name=Multimeter
21-
item.ingotTin.name=Tin Ingot
22-
item.ingotCopper.name=Copper Ingot
23-
item.ingotSteel.name=Steel Ingot
24-
item.ingotLead.name=Lead Ingot
25-
item.ingotSilver.name=Silver Ingot
26-
item.ingotSuperConductive.name=Superconductive Ingot
21+
item.tinIngot.name=Tin Ingot
22+
item.copperIngot.name=Copper Ingot
23+
item.steelIngot.name=Steel Ingot
24+
item.leadIngot.name=Lead Ingot
25+
item.silverIngot.name=Silver Ingot
26+
item.superConductiveIngot.name=Superconductive Ingot
2727
item.blendSuperConductive.name=Superconductive Blend
2828
item.plateIron.name=Iron Plate
2929
item.plateSteel.name=Steel Plate

src/main/resources/assets/physica/textures/items/ingotCopper.png renamed to src/main/resources/assets/physica/textures/items/copperIngot.png

File renamed without changes.

src/main/resources/assets/physica/textures/items/ingotLead.png renamed to src/main/resources/assets/physica/textures/items/leadIngot.png

File renamed without changes.

src/main/resources/assets/physica/textures/items/ingotSilver.png renamed to src/main/resources/assets/physica/textures/items/silverIngot.png

File renamed without changes.

src/main/resources/assets/physica/textures/items/ingotSteel.png renamed to src/main/resources/assets/physica/textures/items/steelIngot.png

File renamed without changes.

0 commit comments

Comments
 (0)