File tree Expand file tree Collapse file tree 1 file changed +22
-0
lines changed
src/main/java/dev/hephaestus/sax/server Expand file tree Collapse file tree 1 file changed +22
-0
lines changed Original file line number Diff line number Diff line change 1+ package dev .hephaestus .sax .server ;
2+
3+ import net .minecraft .block .Block ;
4+ import net .minecraft .block .Blocks ;
5+
6+ import java .util .HashMap ;
7+
8+ // Dummy config for now
9+ public class Config {
10+ public static final HashMap <Block , Block > HIDDEN = new HashMap <>();
11+
12+ static {
13+ HIDDEN .put (Blocks .DIAMOND_ORE , Blocks .STONE );
14+ HIDDEN .put (Blocks .IRON_ORE , Blocks .STONE );
15+ HIDDEN .put (Blocks .GOLD_ORE , Blocks .STONE );
16+ HIDDEN .put (Blocks .COAL_ORE , Blocks .STONE );
17+ HIDDEN .put (Blocks .REDSTONE_ORE , Blocks .STONE );
18+ HIDDEN .put (Blocks .LAPIS_ORE , Blocks .STONE );
19+ HIDDEN .put (Blocks .MOSSY_COBBLESTONE , Blocks .STONE );
20+ HIDDEN .put (Blocks .SPAWNER , Blocks .CAVE_AIR );
21+ }
22+ }
You can’t perform that action at this time.
0 commit comments