mirror of
https://github.com/dragonruler1000/hdm-mod.git
synced 2025-06-29 08:29:33 -05:00
Working on adding a test dimension.
Signed-off-by: dragonruler1000 <github@me.minecraftchest2.us>
This commit is contained in:
parent
5485126da7
commit
4f1e808d99
3 changed files with 22 additions and 0 deletions
|
@ -0,0 +1,12 @@
|
|||
package us.minecraftchest2.hdm_mod.world.dimension;
|
||||
|
||||
import net.minecraft.util.RegistryKey;
|
||||
import net.minecraft.util.ResourceLocation;
|
||||
import net.minecraft.util.registry.Registry;
|
||||
import net.minecraft.world.World;
|
||||
import us.minecraftchest2.hdm_mod.Hdm_mod;
|
||||
|
||||
public class ModDimensions {
|
||||
public static RegistryKey<World> TestDim = RegistryKey.createRegistryKey(Registry.WORLD_KEY,
|
||||
new ResourceLocation(Hdm_mod.MOD_ID, "testdim"));
|
||||
}
|
|
@ -0,0 +1,4 @@
|
|||
package us.minecraftchest2.hdm_mod.world.dimension;
|
||||
|
||||
public class SimpleTeleporter {
|
||||
}
|
6
src/main/resources/data/dimension/testdim.json
Normal file
6
src/main/resources/data/dimension/testdim.json
Normal file
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"type": "hdm_mod:testdim",
|
||||
"generator": {
|
||||
"type": "minecraft:debug"
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue