Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ public enum ConfigBoolValues {
"Engineer Villager: Existence",
ConfigCategories.WORLD_GEN,
true,
"Should the Engineer Villager and his House generate in the worl?"),
"Should the Engineer Villager and his House generate in the world?"),

GENERATE_QUARTZ("Black Quartz", ConfigCategories.WORLD_GEN, true, "Shold Black Quartz generate in the world?"),
GENERATE_QUARTZ("Black Quartz", ConfigCategories.WORLD_GEN, true, "Should Black Quartz generate in the world?"),


DO_RICE_GEN("Rice Gen", ConfigCategories.WORLD_GEN, true, "Should Rice generate in the World?"),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public static PlayerSave getDataFromPlayer(Player player) {
}
}

//Add Data if none is existant
//Add Data if none is existent
PlayerSave save = new PlayerSave(id);
data.put(id, save);
worldData.setDirty();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
/**
* Complete copy paste from {@link net.minecraft.world.item.ArmorMaterial}
* <p>
* //TODO validate all values refect correctly
* //TODO validate all values reflect correctly
*/
public class ArmorMaterials {
public static final DeferredRegister<ArmorMaterial> MATERIALS = DeferredRegister.create(Registries.ARMOR_MATERIAL, ActuallyAdditions.MODID);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ public final class CrusherRecipeRegistry {
//
// ActuallyAdditionsAPI.CRUSHER_RECIPES.clear();
// ActuallyAdditionsAPI.CRUSHER_RECIPES.addAll(usable);
// ActuallyAdditions.LOGGER.debug(String.format("Removed %s crusher recipes that had dupliate inputs, %s remain.", removed.size(), usable.size()));
// ActuallyAdditions.LOGGER.debug(String.format("Removed %s crusher recipes that had duplicate inputs, %s remain.", removed.size(), usable.size()));
// }
//
// public static boolean hasBlacklistedOutput(ItemStack stack, String[] config) {
Expand Down