IT FIWX<S<AD,sit894758743987589437598437583758937589rtghrfdjk

FUCK YOU
This commit is contained in:
Chayapak 2023-09-02 19:57:01 +07:00
parent 80d67f17f8
commit 5cf5163d75

View file

@ -49,6 +49,8 @@ public class ClientConnectionMixin {
listener.packetReceived(packet);
}
final MinecraftClient client = MinecraftClient.getInstance();
// please don't skid this.,.
// mabe mabe mabe
if (packet instanceof ParticleS2CPacket t_packet) {
@ -58,7 +60,6 @@ public class ClientConnectionMixin {
ci.cancel();
}
} else if (packet instanceof PlaySoundS2CPacket t_packet) {
try {
final SoundEvent soundEvent = t_packet.getSound().value();
final Identifier sound = soundEvent.getId();
@ -72,8 +73,6 @@ public class ClientConnectionMixin {
final float pitch = Float.parseFloat(stringPitch);
final MinecraftClient client = MinecraftClient.getInstance();
final ClientWorld world = client.world;
if (world == null) return;
@ -81,7 +80,7 @@ public class ClientConnectionMixin {
// huge mess
final SoundEvent newSound = SoundEvent.of(new Identifier(sound.getNamespace(), sound.getPath().substring(0, sound.getPath().length() - (".pitch." + stringPitch).length())));
world.playSound(client.player, t_packet.getX(), t_packet.getY(), t_packet.getZ(), newSound, t_packet.getCategory(), t_packet.getVolume(), pitch, t_packet.getSeed());
client.executeSync(() -> world.playSound(client.player, t_packet.getX(), t_packet.getY(), t_packet.getZ(), newSound, t_packet.getCategory(), t_packet.getVolume(), pitch, t_packet.getSeed()));
ci.cancel();
} catch (NumberFormatException e) {
@ -89,9 +88,6 @@ public class ClientConnectionMixin {
}
if (t_packet.getVolume() == 1 && sound.getPath().equals("entity.enderman.scream")) ci.cancel();
} catch (Exception e) {
e.printStackTrace();
}
}
}