chore: use mod names for power systems instead of units
ci/woodpecker/push/central-override Pipeline was successful Details
ci/woodpecker/manual/central-override Pipeline was successful Details
ci/woodpecker/tag/central-override Pipeline failed Details

This commit is contained in:
LordMZTE 2023-07-28 21:04:54 +02:00
parent 0f858338ff
commit a442b8d950
Signed by: LordMZTE
GPG Key ID: B64802DC33A64FF6
7 changed files with 9 additions and 9 deletions

View File

@ -22,8 +22,8 @@ public class ElectriCraftProxy implements IModProxy {
PowerSystemRegistry.registerPowerSystem(
powerSystem = new PowerSystem(
// Scale "Ammount" determined experimentally
"Joules",
"J",
"ElectriCraft",
"EC",
120 / 20,
"W"
)

View File

@ -24,8 +24,8 @@ public class GregTechProxy implements IModProxy {
public void registerPowerSystem() {
PowerSystemRegistry.registerPowerSystem(
powerSystem = new PowerSystem(
"Electricity Units",
"EU",
"GregTech",
"GT",
4000,
new String[] { "LV", "MV", "HV", "EV" },
new int[] { 32, 128, 512, 2048 },

View File

@ -23,7 +23,7 @@ public class MagneticraftProxy implements IModProxy {
@Override
public void registerPowerSystem() {
PowerSystemRegistry.registerPowerSystem(
powerSystem = new PowerSystem("Joules", "J", 100, "W")
powerSystem = new PowerSystem("Magneticraft", "MC", 100, "W")
);
}

View File

@ -23,7 +23,7 @@ public class ProjectRedProxy implements IModProxy {
@Override
public void registerPowerSystem() {
PowerSystemRegistry.registerPowerSystem(
powerSystem = new PowerSystem("Bluetricity", "BT", 7000, "W")
powerSystem = new PowerSystem("ProjectRed", "PR", 7000, "W")
);
}

View File

@ -22,7 +22,7 @@ public class RailcraftProxy implements IModProxy {
@Override
public void registerPowerSystem() {
PowerSystemRegistry.registerPowerSystem(
powerSystem = new PowerSystem("Railcraft", "Charge", 4000, "C/t")
powerSystem = new PowerSystem("Railcraft", "RC", 4000, "C/t")
);
}

View File

@ -24,7 +24,7 @@ public class RedPowerProxy implements IModProxy {
@Override
public void registerPowerSystem() {
PowerSystemRegistry.registerPowerSystem(
powerSystem = new PowerSystem("Bluetricity", "BT", 7000, "W")
powerSystem = new PowerSystem("RedPower", "RP", 7000, "W")
);
}

View File

@ -22,7 +22,7 @@ public class UltraTechProxy implements IModProxy {
@Override
public void registerPowerSystem() {
PowerSystemRegistry.registerPowerSystem(
powerSystem = new PowerSystem("Quantum Power", "QP", 20000, "QP/t")
powerSystem = new PowerSystem("UltraTech", "UT", 20000, "QP/t")
);
}