I have this code:
package com.vova7865.essencecraft;
import java.util.UUID;
import com.mojang.authlib.GameProfile;
import net.minecraft.entity.EntityLiving;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.server.MinecraftServer;
import net.minecraft.world.World;
import net.minecraft.world.WorldServer;
import net.minecraftforge.common.DimensionManager;
import net.minecraftforge.common.util.FakePlayer;
import net.minecraftforge.event.entity.living.LivingSpawnEvent;
import net.minecraftforge.fml.common.Mod.EventBusSubscriber;
import net.minecraftforge.fml.common.eventhandler.SubscribeEvent;
@EventBusSubscriber
public class EventHandler {
@SubscribeEvent
public void livingSpawn(LivingSpawnEvent event) {
if(event.getEntityLiving().toString().contains("Guardian")) {
EntityLiving living = (EntityLiving) event.getEntityLiving();
World world = event.getWorld();
WorldServer serverWorld = DimensionManager.getWorld(0);
GameProfile gameProfile = new GameProfile(UUID.randomUUID(), "FakePlayer");
FakePlayer fakePlayer = new FakePlayer(serverWorld, gameProfile);
MinecraftServer minecraftServer = fakePlayer.mcServer;
String playerNames[] = minecraftServer.getOnlinePlayerNames();
String firstPlayerName = playerNames[0];
EntityPlayer player = world.getPlayerEntityByName(firstPlayerName);
double x = player.posX;
double y = player.posY;
double z = player.posZ;
living.attemptTeleport(x, y, z)
}
}
}
So when the guardians spawn, they teleport to me. They do, but the same guardians are teleported to me multiple times, so I think that LivingSpawnEvent is fired not only when they spawn.
Anyone knows how can I do some code only when the mob spawns?