Mirror von
https://github.com/ViaVersion/ViaVersion.git
synchronisiert 2024-11-03 14:50:30 +01:00
Formatting
Dieser Commit ist enthalten in:
Ursprung
2b29d27b0d
Commit
cc354db464
@ -1,16 +1,12 @@
|
|||||||
package us.myles.ViaVersion.transformers;
|
package us.myles.ViaVersion.transformers;
|
||||||
|
|
||||||
import io.netty.buffer.ByteBuf;
|
import io.netty.buffer.ByteBuf;
|
||||||
import io.netty.buffer.ByteBufInputStream;
|
|
||||||
import io.netty.buffer.ByteBufOutputStream;
|
|
||||||
import org.bukkit.Bukkit;
|
|
||||||
import org.bukkit.entity.EntityType;
|
import org.bukkit.entity.EntityType;
|
||||||
import org.json.simple.JSONObject;
|
import org.json.simple.JSONObject;
|
||||||
import org.json.simple.parser.JSONParser;
|
import org.json.simple.parser.JSONParser;
|
||||||
import org.json.simple.parser.ParseException;
|
import org.json.simple.parser.ParseException;
|
||||||
import org.spacehq.mc.protocol.data.game.chunk.Column;
|
import org.spacehq.mc.protocol.data.game.chunk.Column;
|
||||||
import org.spacehq.mc.protocol.util.NetUtil;
|
import org.spacehq.mc.protocol.util.NetUtil;
|
||||||
import org.spacehq.opennbt.NBTIO;
|
|
||||||
import org.spacehq.opennbt.tag.builtin.ByteTag;
|
import org.spacehq.opennbt.tag.builtin.ByteTag;
|
||||||
import org.spacehq.opennbt.tag.builtin.CompoundTag;
|
import org.spacehq.opennbt.tag.builtin.CompoundTag;
|
||||||
import org.spacehq.opennbt.tag.builtin.StringTag;
|
import org.spacehq.opennbt.tag.builtin.StringTag;
|
||||||
@ -27,8 +23,6 @@ import us.myles.ViaVersion.util.EntityUtil;
|
|||||||
import us.myles.ViaVersion.util.PacketUtil;
|
import us.myles.ViaVersion.util.PacketUtil;
|
||||||
import us.myles.ViaVersion.util.ReflectionUtil;
|
import us.myles.ViaVersion.util.ReflectionUtil;
|
||||||
|
|
||||||
import java.io.DataInputStream;
|
|
||||||
import java.io.DataOutputStream;
|
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
import java.util.*;
|
import java.util.*;
|
||||||
|
|
||||||
@ -107,7 +101,6 @@ public class OutgoingTransformer {
|
|||||||
}
|
}
|
||||||
if (packet == PacketType.PLAY_EFFECT) {
|
if (packet == PacketType.PLAY_EFFECT) {
|
||||||
int effectid = input.readInt();
|
int effectid = input.readInt();
|
||||||
|
|
||||||
if (effectid >= 1000 && effectid < 2000 && effectid != 1005) //Sound effect
|
if (effectid >= 1000 && effectid < 2000 && effectid != 1005) //Sound effect
|
||||||
throw new CancelException();
|
throw new CancelException();
|
||||||
if (effectid == 1005)
|
if (effectid == 1005)
|
||||||
@ -687,12 +680,12 @@ public class OutgoingTransformer {
|
|||||||
CompoundTag spawn = new CompoundTag("SpawnData");
|
CompoundTag spawn = new CompoundTag("SpawnData");
|
||||||
spawn.put(new StringTag("id", entity));
|
spawn.put(new StringTag("id", entity));
|
||||||
tag.put(spawn);
|
tag.put(spawn);
|
||||||
PacketUtil.writeNBT(output,tag);
|
PacketUtil.writeNBT(output, tag);
|
||||||
} else if (tag != null) { // EntityID does not exist
|
} else if (tag != null) { // EntityID does not exist
|
||||||
CompoundTag spawn = new CompoundTag("SpawnData");
|
CompoundTag spawn = new CompoundTag("SpawnData");
|
||||||
spawn.put(new StringTag("id", "AreaEffectCloud")); //Make spawners show up as empty when no EntityId is given.
|
spawn.put(new StringTag("id", "AreaEffectCloud")); //Make spawners show up as empty when no EntityId is given.
|
||||||
tag.put(spawn);
|
tag.put(spawn);
|
||||||
PacketUtil.writeNBT(output,spawn);
|
PacketUtil.writeNBT(output, spawn);
|
||||||
} else { //There doesn't exist any NBT tag
|
} else { //There doesn't exist any NBT tag
|
||||||
input.readerIndex(index);
|
input.readerIndex(index);
|
||||||
output.writeBytes(input, input.readableBytes());
|
output.writeBytes(input, input.readableBytes());
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren