Skip to content

Commit d2f685c

Browse files
committed
Don't know why the config file wasn't in the git repo.
1 parent a5c6141 commit d2f685c

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
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+
}

0 commit comments

Comments
 (0)