Skip to content
This repository was archived by the owner on Jul 16, 2023. It is now read-only.

Commit 2da270f

Browse files
committed
update ceu
1 parent 6f3f6bc commit 2da270f

File tree

5 files changed

+4
-4
lines changed

5 files changed

+4
-4
lines changed

libs/gregtech-1.12.2-2.0.0-alpha.jar

167 KB
Binary file not shown.

src/main/java/net/htmlcsjs/htmlTech/materials/HTOrePrefix.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ private static void initLasers() {
3131
int voltage = material.getProperty(LASER).voltage;
3232
int amperage = material.getProperty(LASER).amperage;
3333

34-
textList.add(I18n.format("htmltech.laser.voltage", voltage, GTValues.VN[(GTUtility.getTierByVoltage(voltage))]));
34+
textList.add(I18n.format("htmltech.laser.voltage", voltage, GTValues.VNF[(GTUtility.getTierByVoltage(voltage))]));
3535
textList.add(I18n.format("htmltech.laser.amperage", amperage));
3636
return textList;
3737
});

src/main/java/net/htmlcsjs/htmlTech/metatileentity/multiblock/MetaTileEntityLaserProjector.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ protected void addDisplayText(List<ITextComponent> textList) {
112112
super.addDisplayText(textList);
113113

114114
long voltage = laserContainer.getInputVoltage();//laserContainer.getDiodeVoltage();
115-
textList.add(new TextComponentString(I18n.format("htmltech.laser.voltage", voltage, GTValues.VN[(GTUtility.getTierByVoltage(voltage))])));
115+
textList.add(new TextComponentString(I18n.format("htmltech.laser.voltage", voltage, GTValues.VNF[(GTUtility.getTierByVoltage(voltage))])));
116116
textList.add(new TextComponentString(I18n.format("htmltech.laser.amperage", laserContainer.getDiodeAmperage())));
117117
}
118118
}

src/main/java/net/htmlcsjs/htmlTech/metatileentity/multiblockpart/MetaTileEntityLaserHatch.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
import gregtech.api.unification.material.Material;
1616
import gregtech.client.renderer.texture.cube.SimpleOverlayRenderer;
1717
import gregtech.client.utils.PipelineUtil;
18-
import gregtech.common.metatileentities.electric.multiblockpart.MetaTileEntityMultiblockPart;
18+
import gregtech.common.metatileentities.multi.multiblockpart.MetaTileEntityMultiblockPart;
1919
import net.htmlcsjs.htmlTech.HTTextures;
2020
import net.htmlcsjs.htmlTech.capability.ILaserContainer;
2121
import net.htmlcsjs.htmlTech.capability.LaserContainerHandler;

src/main/resources/assets/htmltech/lang/en_us.lang

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ metaitem.tool.laser.inspector.gui.title=§n§lLaser Inspector
33
metaitem.tool.laser.inspector.gui.not_laser=§lThis isnt a laser, please put in a htmlTech Laser
44

55

6-
htmltech.laser.voltage=Max Voltage: §a%,d §a(%s)
6+
htmltech.laser.voltage=Max Voltage: §a%,d (§r%s§a)
77
htmltech.laser.amperage=Max Amperage: §e%,d
88
htmltech.laser.efficiency=Atmospherical Interferance per metre in Oxygen: §c%d§7
99
htmltech.machine.laser_output_hatch.name=Laser Emitting Hatch

0 commit comments

Comments
 (0)