PR fix-up

This commit is contained in:
simibubi 2023-09-20 10:12:31 +02:00
parent b6e8f0128c
commit 416a509f7a
2 changed files with 8 additions and 1 deletions

View file

@ -189,7 +189,7 @@ public class SuperGlueSelectionHandler {
if (!isGlue(player.getMainHandItem()))
return false;
if(!player.mayBuild())
if (!player.mayBuild())
return false;
if (attack) {

View file

@ -179,7 +179,14 @@ public class CreateRegistrateTags {
helper.add(Mods.BOP, "fir", "redwood", "cherry", "mahogany", "jacaranda", "palm", "willow", "dead",
"magic", "umbran", "hellbark");
helper.add(Mods.BSK, "bluebright", "starlit", "frostbright", "lunar", "dusk", "maple", "cherry");
helper.add(Mods.ENV, "cherry", "willow", "wisteria");
helper.add(Mods.ATM, "aspen", "kousa", "yucca", "morado");
helper.add(Mods.ATM_2, "rosewood", "grimwood");
helper.add(Mods.GOOD, "muddy_oak", "cypress");
helper.add(Mods.BMK, "blighted_balsa", "willow", "swamp_cypress", "ancient_oak");
TagGen.addOptional(logAppender, Mods.IX, "stripped_luminous_stem");
TagGen.addOptional(woodAppender, Mods.IX, "stripped_luminous_hyphae");
TagGen.addOptional(logAppender, Mods.BYG, "stripped_bulbis_stem");
TagGen.addOptional(woodAppender, Mods.BYG, "stripped_bulbis_wood");
}