forked from GeyserMC/Geyser
Update for 1.16.1
This commit is contained in:
parent
3ea1059a62
commit
78df56c7a0
2 changed files with 1 additions and 6 deletions
|
@ -105,7 +105,7 @@
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.github.steveice10</groupId>
|
<groupId>com.github.steveice10</groupId>
|
||||||
<artifactId>mcprotocollib</artifactId>
|
<artifactId>mcprotocollib</artifactId>
|
||||||
<version>1.16-SNAPSHOT</version>
|
<version>1.16.1-SNAPSHOT</version>
|
||||||
<scope>compile</scope>
|
<scope>compile</scope>
|
||||||
<exclusions>
|
<exclusions>
|
||||||
<exclusion>
|
<exclusion>
|
||||||
|
|
|
@ -32,7 +32,6 @@ import com.nukkitx.nbt.CompoundTagBuilder;
|
||||||
import com.nukkitx.nbt.tag.CompoundTag;
|
import com.nukkitx.nbt.tag.CompoundTag;
|
||||||
import com.nukkitx.protocol.bedrock.packet.BlockEntityDataPacket;
|
import com.nukkitx.protocol.bedrock.packet.BlockEntityDataPacket;
|
||||||
import com.nukkitx.protocol.bedrock.packet.BlockEventPacket;
|
import com.nukkitx.protocol.bedrock.packet.BlockEventPacket;
|
||||||
|
|
||||||
import org.geysermc.connector.network.session.GeyserSession;
|
import org.geysermc.connector.network.session.GeyserSession;
|
||||||
import org.geysermc.connector.network.translators.PacketTranslator;
|
import org.geysermc.connector.network.translators.PacketTranslator;
|
||||||
import org.geysermc.connector.network.translators.Translator;
|
import org.geysermc.connector.network.translators.Translator;
|
||||||
|
@ -75,10 +74,6 @@ public class JavaBlockValueTranslator extends PacketTranslator<ServerBlockValueP
|
||||||
retractPiston(session, position, 1.0f, 1.0f);
|
retractPiston(session, position, 1.0f, 1.0f);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (packet.getValue() instanceof BeaconValue) {
|
|
||||||
blockEventPacket.setEventType(1);
|
|
||||||
session.sendUpstreamPacket(blockEventPacket);
|
|
||||||
}
|
|
||||||
if (packet.getValue() instanceof MobSpawnerValue) {
|
if (packet.getValue() instanceof MobSpawnerValue) {
|
||||||
blockEventPacket.setEventType(1);
|
blockEventPacket.setEventType(1);
|
||||||
session.sendUpstreamPacket(blockEventPacket);
|
session.sendUpstreamPacket(blockEventPacket);
|
||||||
|
|
Loading…
Reference in a new issue