diff options
Diffstat (limited to 'src/Java/gtPlusPlus/core/material/Material.java')
-rw-r--r-- | src/Java/gtPlusPlus/core/material/Material.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Java/gtPlusPlus/core/material/Material.java b/src/Java/gtPlusPlus/core/material/Material.java index b5fd2da087..c4f49706e8 100644 --- a/src/Java/gtPlusPlus/core/material/Material.java +++ b/src/Java/gtPlusPlus/core/material/Material.java @@ -38,7 +38,7 @@ public class Material { private final boolean usesBlastFurnace; public final boolean isRadioactive; - public final byte vRadioationLevel; + public final byte vRadiationLevel; private final int meltingPointK; private final int boilingPointK; @@ -179,11 +179,11 @@ public class Material { //Sets the Rad level if (radiationLevel != 0){ this.isRadioactive = true; - this.vRadioationLevel = (byte) radiationLevel; + this.vRadiationLevel = (byte) radiationLevel; } else { this.isRadioactive = false; - this.vRadioationLevel = (byte) radiationLevel; + this.vRadiationLevel = (byte) radiationLevel; } //Sets the materials 'tier'. Will probably replace this logic. |