mirror of
https://gitlab.bixilon.de/bixilon/minosoft.git
synced 2025-09-13 09:26:11 -04:00
Add some new lines before constructor
This commit is contained in:
parent
56d40455d5
commit
a904d69926
@ -14,6 +14,7 @@
|
||||
package de.bixilon.minosoft.config;
|
||||
|
||||
public class ConfigMigrationException extends Exception {
|
||||
|
||||
public ConfigMigrationException() {
|
||||
}
|
||||
|
||||
|
@ -14,6 +14,7 @@
|
||||
package de.bixilon.minosoft.data;
|
||||
|
||||
public class IdentifierSet extends MapSet<Integer, String> {
|
||||
|
||||
public IdentifierSet(Integer key, String value) {
|
||||
super(key, value);
|
||||
}
|
||||
|
@ -19,6 +19,7 @@ import de.bixilon.minosoft.protocol.network.Connection;
|
||||
import java.util.UUID;
|
||||
|
||||
public class EvokerFangs extends Entity {
|
||||
|
||||
public EvokerFangs(Connection connection, int entityId, UUID uuid, Location location, EntityRotation rotation) {
|
||||
super(connection, entityId, uuid, location, rotation);
|
||||
}
|
||||
|
@ -22,6 +22,7 @@ import de.bixilon.minosoft.protocol.network.Connection;
|
||||
import java.util.UUID;
|
||||
|
||||
public class AreaEffectCloud extends Entity {
|
||||
|
||||
public AreaEffectCloud(Connection connection, int entityId, UUID uuid, Location location, EntityRotation rotation) {
|
||||
super(connection, entityId, uuid, location, rotation);
|
||||
}
|
||||
|
@ -20,6 +20,7 @@ import de.bixilon.minosoft.protocol.network.Connection;
|
||||
import java.util.UUID;
|
||||
|
||||
public class EvokerFangs extends Entity {
|
||||
|
||||
public EvokerFangs(Connection connection, int entityId, UUID uuid, Location location, EntityRotation rotation) {
|
||||
super(connection, entityId, uuid, location, rotation);
|
||||
}
|
||||
|
@ -20,6 +20,7 @@ import de.bixilon.minosoft.protocol.network.Connection;
|
||||
import java.util.UUID;
|
||||
|
||||
public class LightningBolt extends Entity {
|
||||
|
||||
public LightningBolt(Connection connection, int entityId, UUID uuid, Location location, EntityRotation rotation) {
|
||||
super(connection, entityId, uuid, location, rotation);
|
||||
}
|
||||
|
@ -14,6 +14,7 @@
|
||||
package de.bixilon.minosoft.data.entities.entities;
|
||||
|
||||
public class UnknownEntityException extends Exception {
|
||||
|
||||
public UnknownEntityException() {
|
||||
}
|
||||
|
||||
|
@ -22,6 +22,7 @@ import de.bixilon.minosoft.protocol.network.Connection;
|
||||
import java.util.UUID;
|
||||
|
||||
public class Bat extends AmbientCreature {
|
||||
|
||||
public Bat(Connection connection, int entityId, UUID uuid, Location location, EntityRotation rotation) {
|
||||
super(connection, entityId, uuid, location, rotation);
|
||||
}
|
||||
|
@ -22,6 +22,7 @@ import de.bixilon.minosoft.protocol.network.Connection;
|
||||
import java.util.UUID;
|
||||
|
||||
public class Bee extends Animal {
|
||||
|
||||
public Bee(Connection connection, int entityId, UUID uuid, Location location, EntityRotation rotation) {
|
||||
super(connection, entityId, uuid, location, rotation);
|
||||
}
|
||||
|
@ -25,6 +25,7 @@ import de.bixilon.minosoft.protocol.network.Connection;
|
||||
import java.util.UUID;
|
||||
|
||||
public class Cat extends TamableAnimal {
|
||||
|
||||
public Cat(Connection connection, int entityId, UUID uuid, Location location, EntityRotation rotation) {
|
||||
super(connection, entityId, uuid, location, rotation);
|
||||
}
|
||||
|
@ -20,6 +20,7 @@ import de.bixilon.minosoft.protocol.network.Connection;
|
||||
import java.util.UUID;
|
||||
|
||||
public class Chicken extends Animal {
|
||||
|
||||
public Chicken(Connection connection, int entityId, UUID uuid, Location location, EntityRotation rotation) {
|
||||
super(connection, entityId, uuid, location, rotation);
|
||||
}
|
||||
|
@ -20,6 +20,7 @@ import de.bixilon.minosoft.protocol.network.Connection;
|
||||
import java.util.UUID;
|
||||
|
||||
public class Cow extends Animal {
|
||||
|
||||
public Cow(Connection connection, int entityId, UUID uuid, Location location, EntityRotation rotation) {
|
||||
super(connection, entityId, uuid, location, rotation);
|
||||
}
|
||||
|
@ -23,6 +23,7 @@ import javax.annotation.Nullable;
|
||||
import java.util.UUID;
|
||||
|
||||
public class Fox extends Animal {
|
||||
|
||||
public Fox(Connection connection, int entityId, UUID uuid, Location location, EntityRotation rotation) {
|
||||
super(connection, entityId, uuid, location, rotation);
|
||||
}
|
||||
|
@ -22,6 +22,7 @@ import de.bixilon.minosoft.protocol.network.Connection;
|
||||
import java.util.UUID;
|
||||
|
||||
public class IronGolem extends AbstractGolem {
|
||||
|
||||
public IronGolem(Connection connection, int entityId, UUID uuid, Location location, EntityRotation rotation) {
|
||||
super(connection, entityId, uuid, location, rotation);
|
||||
}
|
||||
|
@ -22,6 +22,7 @@ import de.bixilon.minosoft.protocol.network.Connection;
|
||||
import java.util.UUID;
|
||||
|
||||
public class Mooshroom extends Cow {
|
||||
|
||||
public Mooshroom(Connection connection, int entityId, UUID uuid, Location location, EntityRotation rotation) {
|
||||
super(connection, entityId, uuid, location, rotation);
|
||||
}
|
||||
|
@ -22,6 +22,7 @@ import de.bixilon.minosoft.protocol.network.Connection;
|
||||
import java.util.UUID;
|
||||
|
||||
public class Ocelot extends Animal {
|
||||
|
||||
public Ocelot(Connection connection, int entityId, UUID uuid, Location location, EntityRotation rotation) {
|
||||
super(connection, entityId, uuid, location, rotation);
|
||||
}
|
||||
|
@ -22,6 +22,7 @@ import de.bixilon.minosoft.protocol.network.Connection;
|
||||
import java.util.UUID;
|
||||
|
||||
public class Panda extends Animal {
|
||||
|
||||
public Panda(Connection connection, int entityId, UUID uuid, Location location, EntityRotation rotation) {
|
||||
super(connection, entityId, uuid, location, rotation);
|
||||
}
|
||||
|
@ -22,6 +22,7 @@ import de.bixilon.minosoft.protocol.network.Connection;
|
||||
import java.util.UUID;
|
||||
|
||||
public class Parrot extends ShoulderRidingAnimal {
|
||||
|
||||
public Parrot(Connection connection, int entityId, UUID uuid, Location location, EntityRotation rotation) {
|
||||
super(connection, entityId, uuid, location, rotation);
|
||||
}
|
||||
|
@ -22,6 +22,7 @@ import de.bixilon.minosoft.protocol.network.Connection;
|
||||
import java.util.UUID;
|
||||
|
||||
public class Pig extends Animal {
|
||||
|
||||
public Pig(Connection connection, int entityId, UUID uuid, Location location, EntityRotation rotation) {
|
||||
super(connection, entityId, uuid, location, rotation);
|
||||
}
|
||||
|
@ -22,6 +22,7 @@ import de.bixilon.minosoft.protocol.network.Connection;
|
||||
import java.util.UUID;
|
||||
|
||||
public class PolarBear extends Animal {
|
||||
|
||||
public PolarBear(Connection connection, int entityId, UUID uuid, Location location, EntityRotation rotation) {
|
||||
super(connection, entityId, uuid, location, rotation);
|
||||
}
|
||||
|
@ -22,6 +22,7 @@ import de.bixilon.minosoft.protocol.network.Connection;
|
||||
import java.util.UUID;
|
||||
|
||||
public class Rabbit extends Animal {
|
||||
|
||||
public Rabbit(Connection connection, int entityId, UUID uuid, Location location, EntityRotation rotation) {
|
||||
super(connection, entityId, uuid, location, rotation);
|
||||
}
|
||||
|
@ -24,6 +24,7 @@ import de.bixilon.minosoft.protocol.network.Connection;
|
||||
import java.util.UUID;
|
||||
|
||||
public class Sheep extends Animal {
|
||||
|
||||
public Sheep(Connection connection, int entityId, UUID uuid, Location location, EntityRotation rotation) {
|
||||
super(connection, entityId, uuid, location, rotation);
|
||||
}
|
||||
|
@ -21,6 +21,7 @@ import de.bixilon.minosoft.protocol.network.Connection;
|
||||
import java.util.UUID;
|
||||
|
||||
public class ShoulderRidingAnimal extends TamableAnimal {
|
||||
|
||||
public ShoulderRidingAnimal(Connection connection, int entityId, UUID uuid, Location location, EntityRotation rotation) {
|
||||
super(connection, entityId, uuid, location, rotation);
|
||||
}
|
||||
|
@ -22,6 +22,7 @@ import de.bixilon.minosoft.protocol.network.Connection;
|
||||
import java.util.UUID;
|
||||
|
||||
public class SnowGolem extends AbstractGolem {
|
||||
|
||||
public SnowGolem(Connection connection, int entityId, UUID uuid, Location location, EntityRotation rotation) {
|
||||
super(connection, entityId, uuid, location, rotation);
|
||||
}
|
||||
|
@ -22,6 +22,7 @@ import de.bixilon.minosoft.protocol.network.Connection;
|
||||
import java.util.UUID;
|
||||
|
||||
public class Strider extends Animal {
|
||||
|
||||
public Strider(Connection connection, int entityId, UUID uuid, Location location, EntityRotation rotation) {
|
||||
super(connection, entityId, uuid, location, rotation);
|
||||
}
|
||||
|
@ -24,6 +24,7 @@ import javax.annotation.Nullable;
|
||||
import java.util.UUID;
|
||||
|
||||
public class Turtle extends Animal {
|
||||
|
||||
public Turtle(Connection connection, int entityId, UUID uuid, Location location, EntityRotation rotation) {
|
||||
super(connection, entityId, uuid, location, rotation);
|
||||
}
|
||||
|
@ -25,6 +25,7 @@ import de.bixilon.minosoft.protocol.network.Connection;
|
||||
import java.util.UUID;
|
||||
|
||||
public class Wolf extends TamableAnimal {
|
||||
|
||||
public Wolf(Connection connection, int entityId, UUID uuid, Location location, EntityRotation rotation) {
|
||||
super(connection, entityId, uuid, location, rotation);
|
||||
}
|
||||
|
@ -23,6 +23,7 @@ import de.bixilon.minosoft.protocol.network.Connection;
|
||||
import java.util.UUID;
|
||||
|
||||
public class Hoglin extends Animal {
|
||||
|
||||
public Hoglin(Connection connection, int entityId, UUID uuid, Location location, EntityRotation rotation) {
|
||||
super(connection, entityId, uuid, location, rotation);
|
||||
}
|
||||
|
@ -20,6 +20,7 @@ import de.bixilon.minosoft.protocol.network.Connection;
|
||||
import java.util.UUID;
|
||||
|
||||
public class Donkey extends AbstractChestedHorse {
|
||||
|
||||
public Donkey(Connection connection, int entityId, UUID uuid, Location location, EntityRotation rotation) {
|
||||
super(connection, entityId, uuid, location, rotation);
|
||||
}
|
||||
|
@ -22,6 +22,7 @@ import de.bixilon.minosoft.protocol.network.Connection;
|
||||
import java.util.UUID;
|
||||
|
||||
public class Horse extends AbstractHorse {
|
||||
|
||||
public Horse(Connection connection, int entityId, UUID uuid, Location location, EntityRotation rotation) {
|
||||
super(connection, entityId, uuid, location, rotation);
|
||||
}
|
||||
|
@ -22,6 +22,7 @@ import de.bixilon.minosoft.protocol.network.Connection;
|
||||
import java.util.UUID;
|
||||
|
||||
public class Llama extends AbstractChestedHorse {
|
||||
|
||||
public Llama(Connection connection, int entityId, UUID uuid, Location location, EntityRotation rotation) {
|
||||
super(connection, entityId, uuid, location, rotation);
|
||||
}
|
||||
|
@ -20,6 +20,7 @@ import de.bixilon.minosoft.protocol.network.Connection;
|
||||
import java.util.UUID;
|
||||
|
||||
public class Mule extends AbstractChestedHorse {
|
||||
|
||||
public Mule(Connection connection, int entityId, UUID uuid, Location location, EntityRotation rotation) {
|
||||
super(connection, entityId, uuid, location, rotation);
|
||||
}
|
||||
|
@ -20,6 +20,7 @@ import de.bixilon.minosoft.protocol.network.Connection;
|
||||
import java.util.UUID;
|
||||
|
||||
public class SkeletonHorse extends AbstractHorse {
|
||||
|
||||
public SkeletonHorse(Connection connection, int entityId, UUID uuid, Location location, EntityRotation rotation) {
|
||||
super(connection, entityId, uuid, location, rotation);
|
||||
}
|
||||
|
@ -20,6 +20,7 @@ import de.bixilon.minosoft.protocol.network.Connection;
|
||||
import java.util.UUID;
|
||||
|
||||
public class TraderLlama extends Llama {
|
||||
|
||||
public TraderLlama(Connection connection, int entityId, UUID uuid, Location location, EntityRotation rotation) {
|
||||
super(connection, entityId, uuid, location, rotation);
|
||||
}
|
||||
|
@ -20,6 +20,7 @@ import de.bixilon.minosoft.protocol.network.Connection;
|
||||
import java.util.UUID;
|
||||
|
||||
public class ZombieHorse extends AbstractHorse {
|
||||
|
||||
public ZombieHorse(Connection connection, int entityId, UUID uuid, Location location, EntityRotation rotation) {
|
||||
super(connection, entityId, uuid, location, rotation);
|
||||
}
|
||||
|
@ -20,6 +20,7 @@ import de.bixilon.minosoft.protocol.network.Connection;
|
||||
import java.util.UUID;
|
||||
|
||||
public class Cod extends AbstractSchoolingFish {
|
||||
|
||||
public Cod(Connection connection, int entityId, UUID uuid, Location location, EntityRotation rotation) {
|
||||
super(connection, entityId, uuid, location, rotation);
|
||||
}
|
||||
|
@ -24,6 +24,7 @@ import javax.annotation.Nullable;
|
||||
import java.util.UUID;
|
||||
|
||||
public class Dolphin extends WaterAnimal {
|
||||
|
||||
public Dolphin(Connection connection, int entityId, UUID uuid, Location location, EntityRotation rotation) {
|
||||
super(connection, entityId, uuid, location, rotation);
|
||||
}
|
||||
|
@ -22,6 +22,7 @@ import de.bixilon.minosoft.protocol.network.Connection;
|
||||
import java.util.UUID;
|
||||
|
||||
public class PufferFish extends AbstractFish {
|
||||
|
||||
public PufferFish(Connection connection, int entityId, UUID uuid, Location location, EntityRotation rotation) {
|
||||
super(connection, entityId, uuid, location, rotation);
|
||||
}
|
||||
|
@ -20,6 +20,7 @@ import de.bixilon.minosoft.protocol.network.Connection;
|
||||
import java.util.UUID;
|
||||
|
||||
public class Salmon extends AbstractSchoolingFish {
|
||||
|
||||
public Salmon(Connection connection, int entityId, UUID uuid, Location location, EntityRotation rotation) {
|
||||
super(connection, entityId, uuid, location, rotation);
|
||||
}
|
||||
|
@ -20,6 +20,7 @@ import de.bixilon.minosoft.protocol.network.Connection;
|
||||
import java.util.UUID;
|
||||
|
||||
public class Squid extends WaterAnimal {
|
||||
|
||||
public Squid(Connection connection, int entityId, UUID uuid, Location location, EntityRotation rotation) {
|
||||
super(connection, entityId, uuid, location, rotation);
|
||||
}
|
||||
|
@ -22,6 +22,7 @@ import de.bixilon.minosoft.protocol.network.Connection;
|
||||
import java.util.UUID;
|
||||
|
||||
public class TropicalFish extends AbstractSchoolingFish {
|
||||
|
||||
public TropicalFish(Connection connection, int entityId, UUID uuid, Location location, EntityRotation rotation) {
|
||||
super(connection, entityId, uuid, location, rotation);
|
||||
}
|
||||
|
@ -25,6 +25,7 @@ import javax.annotation.Nullable;
|
||||
import java.util.UUID;
|
||||
|
||||
public class EndCrystal extends Entity {
|
||||
|
||||
public EndCrystal(Connection connection, int entityId, UUID uuid, Location location, EntityRotation rotation) {
|
||||
super(connection, entityId, uuid, location, rotation);
|
||||
}
|
||||
|
@ -23,6 +23,7 @@ import de.bixilon.minosoft.protocol.network.Connection;
|
||||
import java.util.UUID;
|
||||
|
||||
public class EnderDragon extends Mob {
|
||||
|
||||
public EnderDragon(Connection connection, int entityId, UUID uuid, Location location, EntityRotation rotation) {
|
||||
super(connection, entityId, uuid, location, rotation);
|
||||
}
|
||||
|
@ -23,6 +23,7 @@ import de.bixilon.minosoft.protocol.network.Connection;
|
||||
import java.util.UUID;
|
||||
|
||||
public class WitherBoss extends Monster {
|
||||
|
||||
public WitherBoss(Connection connection, int entityId, UUID uuid, Location location, EntityRotation rotation) {
|
||||
super(connection, entityId, uuid, location, rotation);
|
||||
}
|
||||
|
@ -23,6 +23,7 @@ import de.bixilon.minosoft.protocol.network.Connection;
|
||||
import java.util.UUID;
|
||||
|
||||
public class ArmorStand extends LivingEntity {
|
||||
|
||||
public ArmorStand(Connection connection, int entityId, UUID uuid, Location location, EntityRotation rotation) {
|
||||
super(connection, entityId, uuid, location, rotation);
|
||||
}
|
||||
|
@ -24,6 +24,7 @@ import javax.annotation.Nullable;
|
||||
import java.util.UUID;
|
||||
|
||||
public class ItemFrame extends HangingEntity {
|
||||
|
||||
public ItemFrame(Connection connection, int entityId, UUID uuid, Location location, EntityRotation rotation) {
|
||||
super(connection, entityId, uuid, location, rotation);
|
||||
}
|
||||
|
@ -20,6 +20,7 @@ import de.bixilon.minosoft.protocol.network.Connection;
|
||||
import java.util.UUID;
|
||||
|
||||
public class LeashFenceKnotEntity extends HangingEntity {
|
||||
|
||||
public LeashFenceKnotEntity(Connection connection, int entityId, UUID uuid, Location location, EntityRotation rotation) {
|
||||
super(connection, entityId, uuid, location, rotation);
|
||||
}
|
||||
|
@ -25,6 +25,7 @@ import javax.annotation.Nullable;
|
||||
import java.util.UUID;
|
||||
|
||||
public class ItemEntity extends Entity {
|
||||
|
||||
public ItemEntity(Connection connection, int entityId, UUID uuid, Location location, EntityRotation rotation) {
|
||||
super(connection, entityId, uuid, location, rotation);
|
||||
}
|
||||
|
@ -23,6 +23,7 @@ import de.bixilon.minosoft.protocol.network.Connection;
|
||||
import java.util.UUID;
|
||||
|
||||
public class PrimedTNT extends Entity {
|
||||
|
||||
public PrimedTNT(Connection connection, int entityId, UUID uuid, Location location, EntityRotation rotation) {
|
||||
super(connection, entityId, uuid, location, rotation);
|
||||
}
|
||||
|
@ -22,6 +22,7 @@ import de.bixilon.minosoft.protocol.network.Connection;
|
||||
import java.util.UUID;
|
||||
|
||||
public class Blaze extends Monster {
|
||||
|
||||
public Blaze(Connection connection, int entityId, UUID uuid, Location location, EntityRotation rotation) {
|
||||
super(connection, entityId, uuid, location, rotation);
|
||||
}
|
||||
|
@ -20,6 +20,7 @@ import de.bixilon.minosoft.protocol.network.Connection;
|
||||
import java.util.UUID;
|
||||
|
||||
public class CaveSpider extends Spider {
|
||||
|
||||
public CaveSpider(Connection connection, int entityId, UUID uuid, Location location, EntityRotation rotation) {
|
||||
super(connection, entityId, uuid, location, rotation);
|
||||
}
|
||||
|
@ -22,6 +22,7 @@ import de.bixilon.minosoft.protocol.network.Connection;
|
||||
import java.util.UUID;
|
||||
|
||||
public class Creeper extends Monster {
|
||||
|
||||
public Creeper(Connection connection, int entityId, UUID uuid, Location location, EntityRotation rotation) {
|
||||
super(connection, entityId, uuid, location, rotation);
|
||||
}
|
||||
|
@ -20,6 +20,7 @@ import de.bixilon.minosoft.protocol.network.Connection;
|
||||
import java.util.UUID;
|
||||
|
||||
public class Drowned extends Zombie {
|
||||
|
||||
public Drowned(Connection connection, int entityId, UUID uuid, Location location, EntityRotation rotation) {
|
||||
super(connection, entityId, uuid, location, rotation);
|
||||
}
|
||||
|
@ -20,6 +20,7 @@ import de.bixilon.minosoft.protocol.network.Connection;
|
||||
import java.util.UUID;
|
||||
|
||||
public class ElderGuardian extends Guardian {
|
||||
|
||||
public ElderGuardian(Connection connection, int entityId, UUID uuid, Location location, EntityRotation rotation) {
|
||||
super(connection, entityId, uuid, location, rotation);
|
||||
}
|
||||
|
@ -24,6 +24,7 @@ import javax.annotation.Nullable;
|
||||
import java.util.UUID;
|
||||
|
||||
public class Enderman extends AbstractSkeleton {
|
||||
|
||||
public Enderman(Connection connection, int entityId, UUID uuid, Location location, EntityRotation rotation) {
|
||||
super(connection, entityId, uuid, location, rotation);
|
||||
}
|
||||
|
@ -20,6 +20,7 @@ import de.bixilon.minosoft.protocol.network.Connection;
|
||||
import java.util.UUID;
|
||||
|
||||
public class Endermite extends Monster {
|
||||
|
||||
public Endermite(Connection connection, int entityId, UUID uuid, Location location, EntityRotation rotation) {
|
||||
super(connection, entityId, uuid, location, rotation);
|
||||
}
|
||||
|
@ -23,6 +23,7 @@ import de.bixilon.minosoft.protocol.network.Connection;
|
||||
import java.util.UUID;
|
||||
|
||||
public class Ghast extends FlyingMob {
|
||||
|
||||
public Ghast(Connection connection, int entityId, UUID uuid, Location location, EntityRotation rotation) {
|
||||
super(connection, entityId, uuid, location, rotation);
|
||||
}
|
||||
|
@ -20,6 +20,7 @@ import de.bixilon.minosoft.protocol.network.Connection;
|
||||
import java.util.UUID;
|
||||
|
||||
public class Giant extends Monster {
|
||||
|
||||
public Giant(Connection connection, int entityId, UUID uuid, Location location, EntityRotation rotation) {
|
||||
super(connection, entityId, uuid, location, rotation);
|
||||
}
|
||||
|
@ -22,6 +22,7 @@ import de.bixilon.minosoft.protocol.network.Connection;
|
||||
import java.util.UUID;
|
||||
|
||||
public class Guardian extends Monster {
|
||||
|
||||
public Guardian(Connection connection, int entityId, UUID uuid, Location location, EntityRotation rotation) {
|
||||
super(connection, entityId, uuid, location, rotation);
|
||||
}
|
||||
|
@ -20,6 +20,7 @@ import de.bixilon.minosoft.protocol.network.Connection;
|
||||
import java.util.UUID;
|
||||
|
||||
public class Husk extends Zombie {
|
||||
|
||||
public Husk(Connection connection, int entityId, UUID uuid, Location location, EntityRotation rotation) {
|
||||
super(connection, entityId, uuid, location, rotation);
|
||||
}
|
||||
|
@ -20,6 +20,7 @@ import de.bixilon.minosoft.protocol.network.Connection;
|
||||
import java.util.UUID;
|
||||
|
||||
public class MagmaCube extends Slime {
|
||||
|
||||
public MagmaCube(Connection connection, int entityId, UUID uuid, Location location, EntityRotation rotation) {
|
||||
super(connection, entityId, uuid, location, rotation);
|
||||
}
|
||||
|
@ -23,6 +23,7 @@ import de.bixilon.minosoft.protocol.network.Connection;
|
||||
import java.util.UUID;
|
||||
|
||||
public class Phantom extends FlyingMob {
|
||||
|
||||
public Phantom(Connection connection, int entityId, UUID uuid, Location location, EntityRotation rotation) {
|
||||
super(connection, entityId, uuid, location, rotation);
|
||||
}
|
||||
|
@ -20,6 +20,7 @@ import de.bixilon.minosoft.protocol.network.Connection;
|
||||
import java.util.UUID;
|
||||
|
||||
public class Silverfish extends Monster {
|
||||
|
||||
public Silverfish(Connection connection, int entityId, UUID uuid, Location location, EntityRotation rotation) {
|
||||
super(connection, entityId, uuid, location, rotation);
|
||||
}
|
||||
|
@ -20,6 +20,7 @@ import de.bixilon.minosoft.protocol.network.Connection;
|
||||
import java.util.UUID;
|
||||
|
||||
public class Skeleton extends AbstractSkeleton {
|
||||
|
||||
public Skeleton(Connection connection, int entityId, UUID uuid, Location location, EntityRotation rotation) {
|
||||
super(connection, entityId, uuid, location, rotation);
|
||||
}
|
||||
|
@ -23,6 +23,7 @@ import de.bixilon.minosoft.protocol.network.Connection;
|
||||
import java.util.UUID;
|
||||
|
||||
public class Slime extends Mob {
|
||||
|
||||
public Slime(Connection connection, int entityId, UUID uuid, Location location, EntityRotation rotation) {
|
||||
super(connection, entityId, uuid, location, rotation);
|
||||
}
|
||||
|
@ -22,6 +22,7 @@ import de.bixilon.minosoft.protocol.network.Connection;
|
||||
import java.util.UUID;
|
||||
|
||||
public class Spider extends Monster {
|
||||
|
||||
public Spider(Connection connection, int entityId, UUID uuid, Location location, EntityRotation rotation) {
|
||||
super(connection, entityId, uuid, location, rotation);
|
||||
}
|
||||
|
@ -20,6 +20,7 @@ import de.bixilon.minosoft.protocol.network.Connection;
|
||||
import java.util.UUID;
|
||||
|
||||
public class Stray extends AbstractSkeleton {
|
||||
|
||||
public Stray(Connection connection, int entityId, UUID uuid, Location location, EntityRotation rotation) {
|
||||
super(connection, entityId, uuid, location, rotation);
|
||||
}
|
||||
|
@ -22,6 +22,7 @@ import de.bixilon.minosoft.protocol.network.Connection;
|
||||
import java.util.UUID;
|
||||
|
||||
public class Vex extends Monster {
|
||||
|
||||
public Vex(Connection connection, int entityId, UUID uuid, Location location, EntityRotation rotation) {
|
||||
super(connection, entityId, uuid, location, rotation);
|
||||
}
|
||||
|
@ -20,6 +20,7 @@ import de.bixilon.minosoft.protocol.network.Connection;
|
||||
import java.util.UUID;
|
||||
|
||||
public class WitherSkeleton extends AbstractSkeleton {
|
||||
|
||||
public WitherSkeleton(Connection connection, int entityId, UUID uuid, Location location, EntityRotation rotation) {
|
||||
super(connection, entityId, uuid, location, rotation);
|
||||
}
|
||||
|
@ -22,6 +22,7 @@ import de.bixilon.minosoft.protocol.network.Connection;
|
||||
import java.util.UUID;
|
||||
|
||||
public class Zoglin extends Monster {
|
||||
|
||||
public Zoglin(Connection connection, int entityId, UUID uuid, Location location, EntityRotation rotation) {
|
||||
super(connection, entityId, uuid, location, rotation);
|
||||
}
|
||||
|
@ -22,6 +22,7 @@ import de.bixilon.minosoft.protocol.network.Connection;
|
||||
import java.util.UUID;
|
||||
|
||||
public class Zombie extends Monster {
|
||||
|
||||
public Zombie(Connection connection, int entityId, UUID uuid, Location location, EntityRotation rotation) {
|
||||
super(connection, entityId, uuid, location, rotation);
|
||||
}
|
||||
|
@ -23,6 +23,7 @@ import de.bixilon.minosoft.protocol.network.Connection;
|
||||
import java.util.UUID;
|
||||
|
||||
public class ZombieVillager extends Zombie {
|
||||
|
||||
public ZombieVillager(Connection connection, int entityId, UUID uuid, Location location, EntityRotation rotation) {
|
||||
super(connection, entityId, uuid, location, rotation);
|
||||
}
|
||||
|
@ -20,6 +20,7 @@ import de.bixilon.minosoft.protocol.network.Connection;
|
||||
import java.util.UUID;
|
||||
|
||||
public class ZombifiedPiglin extends Zombie {
|
||||
|
||||
public ZombifiedPiglin(Connection connection, int entityId, UUID uuid, Location location, EntityRotation rotation) {
|
||||
super(connection, entityId, uuid, location, rotation);
|
||||
}
|
||||
|
@ -22,6 +22,7 @@ import de.bixilon.minosoft.protocol.network.Connection;
|
||||
import java.util.UUID;
|
||||
|
||||
public class Piglin extends AbstractPiglin {
|
||||
|
||||
public Piglin(Connection connection, int entityId, UUID uuid, Location location, EntityRotation rotation) {
|
||||
super(connection, entityId, uuid, location, rotation);
|
||||
}
|
||||
|
@ -20,6 +20,7 @@ import de.bixilon.minosoft.protocol.network.Connection;
|
||||
import java.util.UUID;
|
||||
|
||||
public class PiglinBrute extends AbstractPiglin {
|
||||
|
||||
public PiglinBrute(Connection connection, int entityId, UUID uuid, Location location, EntityRotation rotation) {
|
||||
super(connection, entityId, uuid, location, rotation);
|
||||
}
|
||||
|
@ -20,6 +20,7 @@ import de.bixilon.minosoft.protocol.network.Connection;
|
||||
import java.util.UUID;
|
||||
|
||||
public class Evoker extends SpellcasterIllager {
|
||||
|
||||
public Evoker(Connection connection, int entityId, UUID uuid, Location location, EntityRotation rotation) {
|
||||
super(connection, entityId, uuid, location, rotation);
|
||||
}
|
||||
|
@ -20,6 +20,7 @@ import de.bixilon.minosoft.protocol.network.Connection;
|
||||
import java.util.UUID;
|
||||
|
||||
public class Illusioner extends SpellcasterIllager {
|
||||
|
||||
public Illusioner(Connection connection, int entityId, UUID uuid, Location location, EntityRotation rotation) {
|
||||
super(connection, entityId, uuid, location, rotation);
|
||||
}
|
||||
|
@ -22,6 +22,7 @@ import de.bixilon.minosoft.protocol.network.Connection;
|
||||
import java.util.UUID;
|
||||
|
||||
public class Pillager extends AbstractIllager {
|
||||
|
||||
public Pillager(Connection connection, int entityId, UUID uuid, Location location, EntityRotation rotation) {
|
||||
super(connection, entityId, uuid, location, rotation);
|
||||
}
|
||||
|
@ -20,6 +20,7 @@ import de.bixilon.minosoft.protocol.network.Connection;
|
||||
import java.util.UUID;
|
||||
|
||||
public class Ravenger extends Raider {
|
||||
|
||||
public Ravenger(Connection connection, int entityId, UUID uuid, Location location, EntityRotation rotation) {
|
||||
super(connection, entityId, uuid, location, rotation);
|
||||
}
|
||||
|
@ -22,6 +22,7 @@ import de.bixilon.minosoft.protocol.network.Connection;
|
||||
import java.util.UUID;
|
||||
|
||||
public class SpellcasterIllager extends AbstractIllager {
|
||||
|
||||
public SpellcasterIllager(Connection connection, int entityId, UUID uuid, Location location, EntityRotation rotation) {
|
||||
super(connection, entityId, uuid, location, rotation);
|
||||
}
|
||||
|
@ -20,6 +20,7 @@ import de.bixilon.minosoft.protocol.network.Connection;
|
||||
import java.util.UUID;
|
||||
|
||||
public class Vindicator extends AbstractIllager {
|
||||
|
||||
public Vindicator(Connection connection, int entityId, UUID uuid, Location location, EntityRotation rotation) {
|
||||
super(connection, entityId, uuid, location, rotation);
|
||||
}
|
||||
|
@ -22,6 +22,7 @@ import de.bixilon.minosoft.protocol.network.Connection;
|
||||
import java.util.UUID;
|
||||
|
||||
public class Witch extends Raider {
|
||||
|
||||
public Witch(Connection connection, int entityId, UUID uuid, Location location, EntityRotation rotation) {
|
||||
super(connection, entityId, uuid, location, rotation);
|
||||
}
|
||||
|
@ -20,6 +20,7 @@ import de.bixilon.minosoft.protocol.network.Connection;
|
||||
import java.util.UUID;
|
||||
|
||||
public class DragonFireball extends AbstractHurtingProjectile {
|
||||
|
||||
public DragonFireball(Connection connection, int entityId, UUID uuid, Location location, EntityRotation rotation) {
|
||||
super(connection, entityId, uuid, location, rotation);
|
||||
}
|
||||
|
@ -22,6 +22,7 @@ import de.bixilon.minosoft.protocol.network.Connection;
|
||||
import java.util.UUID;
|
||||
|
||||
public class FishingHook extends Projectile {
|
||||
|
||||
public FishingHook(Connection connection, int entityId, UUID uuid, Location location, EntityRotation rotation) {
|
||||
super(connection, entityId, uuid, location, rotation);
|
||||
}
|
||||
|
@ -20,6 +20,7 @@ import de.bixilon.minosoft.protocol.network.Connection;
|
||||
import java.util.UUID;
|
||||
|
||||
public class LlamaSpit extends Projectile {
|
||||
|
||||
public LlamaSpit(Connection connection, int entityId, UUID uuid, Location location, EntityRotation rotation) {
|
||||
super(connection, entityId, uuid, location, rotation);
|
||||
}
|
||||
|
@ -20,6 +20,7 @@ import de.bixilon.minosoft.protocol.network.Connection;
|
||||
import java.util.UUID;
|
||||
|
||||
public class ShulkerBullet extends Projectile {
|
||||
|
||||
public ShulkerBullet(Connection connection, int entityId, UUID uuid, Location location, EntityRotation rotation) {
|
||||
super(connection, entityId, uuid, location, rotation);
|
||||
}
|
||||
|
@ -22,6 +22,7 @@ import de.bixilon.minosoft.protocol.network.Connection;
|
||||
import java.util.UUID;
|
||||
|
||||
public class ThrownTrident extends AbstractArrow {
|
||||
|
||||
public ThrownTrident(Connection connection, int entityId, UUID uuid, Location location, EntityRotation rotation) {
|
||||
super(connection, entityId, uuid, location, rotation);
|
||||
}
|
||||
|
@ -22,6 +22,7 @@ import de.bixilon.minosoft.protocol.network.Connection;
|
||||
import java.util.UUID;
|
||||
|
||||
public class WitherSkull extends AbstractHurtingProjectile {
|
||||
|
||||
public WitherSkull(Connection connection, int entityId, UUID uuid, Location location, EntityRotation rotation) {
|
||||
super(connection, entityId, uuid, location, rotation);
|
||||
}
|
||||
|
@ -23,6 +23,7 @@ import de.bixilon.minosoft.protocol.network.Connection;
|
||||
import java.util.UUID;
|
||||
|
||||
public class Boat extends Entity {
|
||||
|
||||
public Boat(Connection connection, int entityId, UUID uuid, Location location, EntityRotation rotation) {
|
||||
super(connection, entityId, uuid, location, rotation);
|
||||
}
|
||||
|
@ -20,6 +20,7 @@ import de.bixilon.minosoft.protocol.network.Connection;
|
||||
import java.util.UUID;
|
||||
|
||||
public class Minecart extends AbstractMinecart {
|
||||
|
||||
public Minecart(Connection connection, int entityId, UUID uuid, Location location, EntityRotation rotation) {
|
||||
super(connection, entityId, uuid, location, rotation);
|
||||
}
|
||||
|
@ -20,6 +20,7 @@ import de.bixilon.minosoft.protocol.network.Connection;
|
||||
import java.util.UUID;
|
||||
|
||||
public class MinecartChest extends AbstractMinecart {
|
||||
|
||||
public MinecartChest(Connection connection, int entityId, UUID uuid, Location location, EntityRotation rotation) {
|
||||
super(connection, entityId, uuid, location, rotation);
|
||||
}
|
||||
|
@ -23,6 +23,7 @@ import de.bixilon.minosoft.protocol.network.Connection;
|
||||
import java.util.UUID;
|
||||
|
||||
public class MinecartCommandBlock extends AbstractMinecart {
|
||||
|
||||
public MinecartCommandBlock(Connection connection, int entityId, UUID uuid, Location location, EntityRotation rotation) {
|
||||
super(connection, entityId, uuid, location, rotation);
|
||||
}
|
||||
|
@ -22,6 +22,7 @@ import de.bixilon.minosoft.protocol.network.Connection;
|
||||
import java.util.UUID;
|
||||
|
||||
public class MinecartFurnace extends AbstractMinecartContainer {
|
||||
|
||||
public MinecartFurnace(Connection connection, int entityId, UUID uuid, Location location, EntityRotation rotation) {
|
||||
super(connection, entityId, uuid, location, rotation);
|
||||
}
|
||||
|
@ -20,6 +20,7 @@ import de.bixilon.minosoft.protocol.network.Connection;
|
||||
import java.util.UUID;
|
||||
|
||||
public class MinecartHopper extends AbstractMinecartContainer {
|
||||
|
||||
public MinecartHopper(Connection connection, int entityId, UUID uuid, Location location, EntityRotation rotation) {
|
||||
super(connection, entityId, uuid, location, rotation);
|
||||
}
|
||||
|
@ -20,6 +20,7 @@ import de.bixilon.minosoft.protocol.network.Connection;
|
||||
import java.util.UUID;
|
||||
|
||||
public class MinecartSpawner extends AbstractMinecart {
|
||||
|
||||
public MinecartSpawner(Connection connection, int entityId, UUID uuid, Location location, EntityRotation rotation) {
|
||||
super(connection, entityId, uuid, location, rotation);
|
||||
}
|
||||
|
@ -20,6 +20,7 @@ import de.bixilon.minosoft.protocol.network.Connection;
|
||||
import java.util.UUID;
|
||||
|
||||
public class MinecartTNT extends AbstractMinecart {
|
||||
|
||||
public MinecartTNT(Connection connection, int entityId, UUID uuid, Location location, EntityRotation rotation) {
|
||||
super(connection, entityId, uuid, location, rotation);
|
||||
}
|
||||
|
@ -14,6 +14,7 @@
|
||||
package de.bixilon.minosoft.data.mappings;
|
||||
|
||||
public class MappingsLoadingException extends Exception {
|
||||
|
||||
public MappingsLoadingException() {
|
||||
}
|
||||
|
||||
|
@ -14,6 +14,7 @@
|
||||
package de.bixilon.minosoft.modding.loading;
|
||||
|
||||
public class ModLoadingException extends Exception {
|
||||
|
||||
public ModLoadingException() {
|
||||
}
|
||||
|
||||
|
@ -282,7 +282,7 @@ public class Connection {
|
||||
if (this.state == state) {
|
||||
return;
|
||||
}
|
||||
Log.verbose("ConnectionStatus changed: " + state);
|
||||
Log.verbose("ConnectionState changed: " + state);
|
||||
ConnectionStates previousState = this.state;
|
||||
this.state = state;
|
||||
switch (state) {
|
||||
|
@ -14,6 +14,7 @@
|
||||
package de.bixilon.minosoft.protocol.protocol;
|
||||
|
||||
public class PacketParseException extends Exception {
|
||||
|
||||
public PacketParseException() {
|
||||
}
|
||||
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user