Remove some comments, small changes.

This commit is contained in:
kelson8 2024-03-19 06:10:23 -04:00
parent d2d630a099
commit f238c87793
Signed by: kelson8
GPG Key ID: 3D738D9DD7239E13
2 changed files with 6 additions and 7 deletions

View File

@ -6,10 +6,12 @@ import net.minecraft.entity.Entity;
import net.minecraft.entity.EntityType; import net.minecraft.entity.EntityType;
import net.minecraft.entity.LightningEntity; import net.minecraft.entity.LightningEntity;
import net.minecraft.entity.passive.ChickenEntity; import net.minecraft.entity.passive.ChickenEntity;
import net.minecraft.entity.player.PlayerEntity;
import net.minecraft.nbt.NbtCompound; import net.minecraft.nbt.NbtCompound;
import net.minecraft.registry.entry.RegistryEntry; import net.minecraft.registry.entry.RegistryEntry;
import net.minecraft.server.command.ServerCommandSource; import net.minecraft.server.command.ServerCommandSource;
import net.minecraft.server.command.SummonCommand; import net.minecraft.server.command.SummonCommand;
import net.minecraft.server.network.ServerPlayerEntity;
import net.minecraft.server.world.ServerWorld; import net.minecraft.server.world.ServerWorld;
import net.minecraft.util.math.Vec3d; import net.minecraft.util.math.Vec3d;
import net.minecraft.world.World; import net.minecraft.world.World;
@ -18,6 +20,8 @@ public class EntitySpawnTest {
public void MobTest(World world){ public void MobTest(World world){
// I'm not sure how to get the current world the player is in. // I'm not sure how to get the current world the player is in.
// ServerPlayerEntity player = new ServerPlayerEntity();
// player.getWorld();
//World world = ; //World world = ;
// I have no idea what this will do lol, I think possibly I have finally figured it out. // I have no idea what this will do lol, I think possibly I have finally figured it out.
// I'm not sure how to spawn these mobs like this though. // I'm not sure how to spawn these mobs like this though.

View File

@ -87,16 +87,11 @@ public class KelsonCraftTest implements ModInitializer {
}))); })));
// This should add the teleport command, I got the idea from this: // This should add the teleport command, I got the idea from this:
// https://github.com/Draylar/get-off-my-lawn/blob/1.17/src/main/java/draylar/goml/GetOffMyLawn.java#L30-L37 // https://github.com/Draylar/get-off-my-lawn/blob/1.17/src/main/java/draylar/goml/GetOffMyLawn.java#L30-L37
// Commands
TestCommands.init(); TestCommands.init();
// CommandTest commandTest = new CommandTest(); // CommandTest commandTest = new CommandTest();
//I wonder how to implement a teleport command, and a try to put this in another class.
// CommandRegistrationCallback.EVENT.register((dispatcher, registryAccess, environment) -> dispatcher.register(literal("teleport")
// .executes(context -> {
// context.getSource().sendFeedback(() -> Text.literal("Teleport to %s"), false);
// return 1;
// })));
// This is a way to use the item as fuel // This is a way to use the item as fuel
FuelRegistry.INSTANCE.add(CustomItems.CUSTOM_ITEM, 300); FuelRegistry.INSTANCE.add(CustomItems.CUSTOM_ITEM, 300);