Skip to content

Commit

Permalink
disabled hint blocks for now
Browse files Browse the repository at this point in the history
  • Loading branch information
Trinsdar committed Sep 22, 2023
1 parent 9530795 commit e4713b1
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
import net.minecraft.world.level.block.Blocks;

public class Registry {
public static final Block HINT_0 = add("hint_0", new BlockHint());
/*public static final Block HINT_0 = add("hint_0", new BlockHint());
public static final Block HINT_1 = add("hint_1", new BlockHint());
public static final Block HINT_2 = add("hint_2", new BlockHint());
public static final Block HINT_3 = add("hint_3", new BlockHint());
Expand All @@ -25,7 +25,7 @@ public class Registry {
public static final Block HINT_AIR = add("hint_air", new BlockHint());
public static final Block HINT_DEFAULT = add("hint_default", new BlockHint());
public static final Block HINT_ERROR = add("hint_error", new BlockHint());
public static final Block HINT_NOAIR = add("hint_noair", new BlockHint());
public static final Block HINT_NOAIR = add("hint_noair", new BlockHint());*/

public static final Item FRONT_ROTATION_TOOL = add("front_rotation_tool", new ItemFrontRotationTool());
public static final Item CONSTRUCTABLE_TRIGGER = add("constructable_trigger", new ItemConstructableTrigger());
Expand All @@ -44,7 +44,7 @@ private static <B extends Item> B add(String name, B item) {

public static Block getHint(int dots){
return switch (dots){
case 1 -> HINT_0;
/*case 1 -> HINT_0;
case 2 -> HINT_1;
case 3 -> HINT_2;
case 4 -> HINT_3;
Expand All @@ -55,7 +55,7 @@ public static Block getHint(int dots){
case 9 -> HINT_8;
case 10 -> HINT_9;
case 11 -> HINT_10;
case 12 -> HINT_11;
case 12 -> HINT_11;*/
default -> Blocks.AIR;
};
}
Expand Down

0 comments on commit e4713b1

Please sign in to comment.