mirror of
https://github.com/HbmMods/Hbm-s-Nuclear-Tech-GIT.git
synced 2026-01-25 10:32:49 +00:00
Forgot to remove this from making the name work xd
This commit is contained in:
parent
7f963bdb6f
commit
003afa4071
@ -23,17 +23,15 @@ public class BlockAbsorber extends BlockEnumMulti implements IBlockMulti {
|
|||||||
// Enum for tiers they are in order of meta data, 0, 1, 2, 3 for Base, Red, Green, Pink
|
// Enum for tiers they are in order of meta data, 0, 1, 2, 3 for Base, Red, Green, Pink
|
||||||
public static enum EnumAbsorberTier {
|
public static enum EnumAbsorberTier {
|
||||||
|
|
||||||
BASE("Radiation Absorber", 2.5F, "absorber"),
|
BASE(2.5F, "absorber"),
|
||||||
RED("Enhanced Radiation Absorber", 10F, "absorber_red"),
|
RED(10F, "absorber_red"),
|
||||||
GREEN("Advanced Radiation Absorber", 100F, "absorber_green"),
|
GREEN(100F, "absorber_green"),
|
||||||
PINK("Elite Radiation Absorber", 10000F, "absorber_pink");
|
PINK(10000F, "absorber_pink");
|
||||||
|
|
||||||
public final String displayName;
|
|
||||||
public final float absorbAmount;
|
public final float absorbAmount;
|
||||||
public final String textureName;
|
public final String textureName;
|
||||||
|
|
||||||
private EnumAbsorberTier(String name, float absorb, String texture) {
|
private EnumAbsorberTier(float absorb, String texture) {
|
||||||
this.displayName = name;
|
|
||||||
this.absorbAmount = absorb;
|
this.absorbAmount = absorb;
|
||||||
this.textureName = texture;
|
this.textureName = texture;
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user