first pass on 1.16.2 - no world gen

This commit is contained in:
modmuss50 2020-07-29 19:42:39 +01:00
parent ec1ae17134
commit 6e0fc6af61
49 changed files with 139 additions and 138 deletions

View file

@ -24,7 +24,7 @@
package techreborn.api.generator;
import javax.annotation.Nonnull;
import org.jetbrains.annotations.NotNull;
public enum EFluidGenerator {
THERMAL("TechReborn.ThermalGenerator"),
@ -33,14 +33,14 @@ public enum EFluidGenerator {
SEMIFLUID("TechReborn.SemifluidGenerator"),
PLASMA("TechReborn.PlasmaGenerator");
@Nonnull
@NotNull
private final String recipeID;
EFluidGenerator(@Nonnull String recipeID) {
EFluidGenerator(@NotNull String recipeID) {
this.recipeID = recipeID;
}
@Nonnull
@NotNull
public String getRecipeID() {
return recipeID;
}