Renamed Eater to Feeder.
This commit is contained in:
parent
f9092127bb
commit
2335d53369
2 changed files with 3 additions and 3 deletions
|
@ -57,7 +57,7 @@ public abstract class ModularCommon {
|
|||
public static final String PUNCH_KNOCKBACK = "Melee Knockback";
|
||||
public static final String WALKING_ENERGY_CONSUMPTION = "Walking Energy Consumption";
|
||||
public static final String WALKING_SPEED_MULTIPLIER = "Walking Speed Multiplier";
|
||||
public static final String EAT_ENERGY_CONSUMPTION = "Eating Energy Consumption";
|
||||
public static final String FEED_ENERGY_CONSUMPTION = "Feeding Energy Consumption";
|
||||
|
||||
/**
|
||||
* Module names
|
||||
|
@ -92,7 +92,7 @@ public abstract class ModularCommon {
|
|||
public static final String MODULE_NIGHT_VISION = "Night Vision";
|
||||
public static final String MODULE_ACTIVE_CAMOUFLAGE = "Active Camouflage";
|
||||
public static final String MODULE_FLIGHT_CONTROL = "Flight Control";
|
||||
public static final String MODULE_EATER = "Eater";
|
||||
public static final String MODULE_FEEDER = "Feeder";
|
||||
public static final String CITIZEN_JOE_STYLE = "Citizen Joe Style";
|
||||
/**
|
||||
* Categories for modules
|
||||
|
|
|
@ -245,7 +245,7 @@ public class Config {
|
|||
// .addInstallCost(copyAndResize(ItemComponent.fieldEmitter, 2));
|
||||
// addModule(module);
|
||||
|
||||
module = new PowerModule(ModularCommon.MODULE_EATER, HEADONLY, MuseIcon.JETPACK, ModularCommon.CATEGORY_ENVIRONMENTAL)
|
||||
module = new PowerModule(ModularCommon.MODULE_FEEDER, HEADONLY, MuseIcon.PLATE_1_GREEN, ModularCommon.CATEGORY_ENVIRONMENTAL)
|
||||
.setDescription("Why eat when your armor can do it for you.")
|
||||
.addInstallCost(copyAndResize(ItemComponent.servoMotor, 2));
|
||||
addModule(module);
|
||||
|
|
Loading…
Reference in a new issue