aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--BotdustriesLICENSE21
-rw-r--r--src/main/java/com/elisis/gtnhlanth/common/register/BotWerkstoffMaterialPool.java5
-rw-r--r--src/main/java/com/elisis/gtnhlanth/common/tileentity/Digester.java14
-rw-r--r--src/main/java/com/elisis/gtnhlanth/loader/BotRecipes.java5
4 files changed, 36 insertions, 9 deletions
diff --git a/BotdustriesLICENSE b/BotdustriesLICENSE
new file mode 100644
index 0000000000..7c94682d77
--- /dev/null
+++ b/BotdustriesLICENSE
@@ -0,0 +1,21 @@
+MIT License
+
+Copyright (c) 2021 botn365
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
diff --git a/src/main/java/com/elisis/gtnhlanth/common/register/BotWerkstoffMaterialPool.java b/src/main/java/com/elisis/gtnhlanth/common/register/BotWerkstoffMaterialPool.java
index 63fa8e0ba2..e5e21a97d3 100644
--- a/src/main/java/com/elisis/gtnhlanth/common/register/BotWerkstoffMaterialPool.java
+++ b/src/main/java/com/elisis/gtnhlanth/common/register/BotWerkstoffMaterialPool.java
@@ -10,6 +10,11 @@ import static com.github.bartimaeusnek.bartworks.system.material.Werkstoff.Types
import static com.github.bartimaeusnek.bartworks.util.BW_Util.subscriptNumbers;
+/*
+ *
+ * Originally authored by botn365 under the MIT License. See BotdustriesLICENSE
+ *
+ */
@SuppressWarnings("unchecked")
public class BotWerkstoffMaterialPool implements Runnable {
diff --git a/src/main/java/com/elisis/gtnhlanth/common/tileentity/Digester.java b/src/main/java/com/elisis/gtnhlanth/common/tileentity/Digester.java
index 52049943d1..c0ffbfb795 100644
--- a/src/main/java/com/elisis/gtnhlanth/common/tileentity/Digester.java
+++ b/src/main/java/com/elisis/gtnhlanth/common/tileentity/Digester.java
@@ -170,7 +170,7 @@ public class Digester extends GT_MetaTileEntity_EnhancedMultiBlockBase<Digester>
@Override
public String[] getStructureDescription(ItemStack arg0) {
- return DescTextLocalization.addText("UniversalChemicalFuelEngine.hint", 11);
+ return DescTextLocalization.addText("Digester.hint", 5);
}
@Override
@@ -186,19 +186,15 @@ public class Digester extends GT_MetaTileEntity_EnhancedMultiBlockBase<Digester>
tt.addMachineType("Digester")
.addInfo("Controller block for the Digester")
.addInfo("Input ores and fluid, output water.")
- .addInfo("You will need to balance the heat provided")
- .addInfo("to be able to complete the recipe.")
.addInfo(BLUEPRINT_INFO)
.addSeparator()
.addController("Front bottom")
.addInputHatch("Hint block with dot 1")
.addInputBus("Hint block with dot 1")
- .addOutputHatch("Hint block with dot 2")
- .addOutputBus("Hint block with dot 2")
- .addMaintenanceHatch("Hint block with dot 2")
- .addOtherStructurePart("Neutron Accelerator", "Hint block with dot 2")
- .addOtherStructurePart("Neutron Sensor", "Hint block with dot 2")
- .addCasingInfo("Clean Stainless Steel Machine Casing", 7)
+ .addOutputHatch("Hint block with dot 1")
+ .addOutputBus("Hint block with dot 1")
+ .addMaintenanceHatch("Hint block with dot 1")
+ .addMufflerHatch("Hint block with dot 1")
.toolTipFinisher("GTNH: Lanthanides");
return tt;
}
diff --git a/src/main/java/com/elisis/gtnhlanth/loader/BotRecipes.java b/src/main/java/com/elisis/gtnhlanth/loader/BotRecipes.java
index c489397dbd..3f3256a0b3 100644
--- a/src/main/java/com/elisis/gtnhlanth/loader/BotRecipes.java
+++ b/src/main/java/com/elisis/gtnhlanth/loader/BotRecipes.java
@@ -61,6 +61,11 @@ import ic2.core.Ic2Items;
import net.minecraft.item.ItemStack;
import net.minecraftforge.fluids.Fluid;
import net.minecraftforge.fluids.FluidStack;
+/*
+ *
+ * Originally Authored by Bot under the MIT License
+ *
+ */
public class BotRecipes {